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/prefs.c | |
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/prefs.c')
-rw-r--r-- | src/prefs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/prefs.c b/src/prefs.c index d7403d76..c8a16d67 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -78,6 +78,7 @@ void a_Prefs_init(void) prefs.middle_click_drags_page = TRUE; prefs.middle_click_opens_new_tab = TRUE; prefs.right_click_closes_tab = TRUE; + prefs.scroll_switches_tabs = TRUE; prefs.no_proxy = dStrdup(PREFS_NO_PROXY); prefs.panel_size = P_medium; prefs.parse_embedded_css=TRUE; |