From 71e680bd5f19bfd6b29e221e2f0b6e4d03cf3294 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 16 Oct 2024 19:41:12 +0200 Subject: 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. --- dillorc | 2 +- src/prefs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dillorc b/dillorc index d2ba4e5a..70695781 100644 --- a/dillorc +++ b/dillorc @@ -423,7 +423,7 @@ ui_tab_bg_color=#b7beb7 # Focus follows new Tabs. # You can hold SHIFT to temporarily revert this behaviour. -#focus_new_tab=YES +#focus_new_tab=NO # Ask before quitting Dillo with more than one window or tab open. #show_quit_dialog=NO 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; -- cgit v1.2.3