summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-09-24 10:44:58 +0100
committerVincent Sanders <vince@kyllikki.org>2017-09-24 10:44:58 +0100
commite219d6f33ce5c319b0e33cda1c3338b000a40aff (patch)
treea155f272c6acb2833eec06300f318678b291933e /include
parentf86e9e505dea633a893b3d2d3b73d4bb8cc3d02b (diff)
parent9ca33854bf35b46a7796b334ace870029d3e36b9 (diff)
downloadnetsurf-e219d6f33ce5c319b0e33cda1c3338b000a40aff.tar.gz
netsurf-e219d6f33ce5c319b0e33cda1c3338b000a40aff.tar.bz2
Merge remote-tracking branch 'origin/tlsa/dsilvers/scrolloffset'
Diffstat (limited to 'include')
-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)
};
/**