diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-10-16 19:41:12 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-10-17 18:15:47 +0200 |
commit | 71e680bd5f19bfd6b29e221e2f0b6e4d03cf3294 (patch) | |
tree | af562dae87603d594a388a2e8c96a2e23bc76035 /src/prefs.c | |
parent | 60e7437ec072e0653e3664281857e28c647afaf9 (diff) |
Don't focus on new tabs by default
Assume the user will want to continue in the current page when opening
a page in a new tab.
Diffstat (limited to 'src/prefs.c')
-rw-r--r-- | src/prefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs.c b/src/prefs.c index 16f837f6..d6a3ff12 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -44,7 +44,7 @@ void a_Prefs_init(void) prefs.buffered_drawing = 1; prefs.contrast_visited_color = TRUE; prefs.enterpress_forces_submit = FALSE; - prefs.focus_new_tab = TRUE; + prefs.focus_new_tab = FALSE; prefs.font_cursive = dStrdup(PREFS_FONT_CURSIVE); prefs.font_factor = 1.0; prefs.zoom_factor = 1.0; |