diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-16 21:18:19 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-22 00:16:10 +0100 |
commit | 3539afc759c268880c5b3027bbc97e5c02dd1263 (patch) | |
tree | e6b252931d98e64bf637a34a221709cb13050bb6 /src/prefsparser.cc | |
parent | 6392699316bbdfd027862fa28050cd54253f25d4 (diff) |
Add scroll_switches_tabs option
By default, scrolling the mouse wheel over the tabs will switch among
tabs. The option allows users to disable the feature.
Diffstat (limited to 'src/prefsparser.cc')
-rw-r--r-- | src/prefsparser.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/prefsparser.cc b/src/prefsparser.cc index d1711a12..b1b38775 100644 --- a/src/prefsparser.cc +++ b/src/prefsparser.cc @@ -186,6 +186,7 @@ void PrefsParser::parse(FILE *fp) { "middle_click_opens_new_tab", &prefs.middle_click_opens_new_tab, PREFS_BOOL, 0 }, { "right_click_closes_tab", &prefs.right_click_closes_tab, PREFS_BOOL, 0 }, + { "scroll_switches_tabs", &prefs.scroll_switches_tabs, PREFS_BOOL, 0 }, { "no_proxy", &prefs.no_proxy, PREFS_STRING, 0 }, { "panel_size", &prefs.panel_size, PREFS_PANEL_SIZE, 0 }, { "parse_embedded_css", &prefs.parse_embedded_css, PREFS_BOOL, 0 }, |