summaryrefslogtreecommitdiff
path: root/include/netsurf/browser_window.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2017-09-20 18:58:19 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2017-09-20 18:58:19 +0100
commit2c36eb4e217cf2528c8cb6d120fb9a662f212376 (patch)
treea6a5c4cc7b809703b7f42b520a40de567ab63f6f /include/netsurf/browser_window.h
parentd3493b138f38c9e26da24fcffb3ef8b813e3ca4e (diff)
downloadnetsurf-2c36eb4e217cf2528c8cb6d120fb9a662f212376.tar.gz
netsurf-2c36eb4e217cf2528c8cb6d120fb9a662f212376.tar.bz2
Add concept of browser scroll offset saving in local history
Diffstat (limited to 'include/netsurf/browser_window.h')
-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)
};
/**