summaryrefslogtreecommitdiff
path: root/include/netsurf
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2017-09-20 18:58:19 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2017-09-23 14:55:52 +0100
commita43d0cec7a1ab98c5264d7881c8d2752f21dc812 (patch)
tree5028620be84d175420fdca21f9da5f4d1716cee3 /include/netsurf
parentf86e9e505dea633a893b3d2d3b73d4bb8cc3d02b (diff)
downloadnetsurf-a43d0cec7a1ab98c5264d7881c8d2752f21dc812.tar.gz
netsurf-a43d0cec7a1ab98c5264d7881c8d2752f21dc812.tar.bz2
Add concept of browser scroll offset saving in local history
Diffstat (limited to 'include/netsurf')
-rw-r--r--include/netsurf/browser_window.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/netsurf/browser_window.h b/include/netsurf/browser_window.h
index 567e314c5..6c44e161f 100644
--- a/include/netsurf/browser_window.h
+++ b/include/netsurf/browser_window.h
@@ -116,7 +116,10 @@ enum browser_window_nav_flags {
* A transaction is unverifiable if the user does not
* have that option.
*/
- BW_NAVIGATE_UNVERIFIABLE = (1 << 2)
+ BW_NAVIGATE_UNVERIFIABLE = (1 << 2),
+
+ /** suppress initial history updates (used by back/fwd/etc) */
+ BW_NAVIGATE_NO_TERMINAL_HISTORY_UPDATE = (1 << 3)
};
/**