diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-10-16 19:39:31 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-10-17 18:15:47 +0200 |
commit | 60e7437ec072e0653e3664281857e28c647afaf9 (patch) | |
tree | 36c9277b223daac61148b4166397805db09d53d0 | |
parent | 3364967f2542cc0ad33509f6afcf34984cb0f3c8 (diff) |
Don't show the quit dialog by default
Assume the user wants to quit Dillo by default even if there are
multiple tabs.
-rw-r--r-- | dillorc | 2 | ||||
-rw-r--r-- | src/prefs.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -426,7 +426,7 @@ ui_tab_bg_color=#b7beb7 #focus_new_tab=YES # Ask before quitting Dillo with more than one window or tab open. -#show_quit_dialog=YES +#show_quit_dialog=NO #------------------------------------------------------------------------- # DEBUG MESSAGES SECTION diff --git a/src/prefs.c b/src/prefs.c index 884e00d0..16f837f6 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -104,7 +104,7 @@ void a_Prefs_init(void) prefs.show_home = TRUE; prefs.show_msg = TRUE; prefs.show_progress_box = TRUE; - prefs.show_quit_dialog = TRUE; + prefs.show_quit_dialog = FALSE; prefs.show_reload = TRUE; prefs.show_save = TRUE; prefs.show_url = TRUE; |