From 5bfb98f9a95d19df95766a0b51ddb31509d43ea0 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 22 May 2011 19:58:07 +0100 Subject: [PATCH] Change default value of close_to_tray to False Prevents default install of Deluge disappearing if tray icon is missing. --- deluge/ui/gtkui/gtkui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/gtkui.py b/deluge/ui/gtkui/gtkui.py index e9c4c5426..11279077d 100644 --- a/deluge/ui/gtkui/gtkui.py +++ b/deluge/ui/gtkui/gtkui.py @@ -111,7 +111,7 @@ DEFAULT_PREFS = { "interactive_add": True, "focus_add_dialog": True, "enable_system_tray": True, - "close_to_tray": True, + "close_to_tray": False, "start_in_tray": False, "enable_appindicator": False, "lock_tray": False,