From 974f48380f3c9b1f570902f1249cf05b8b7e393f 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 b87c56a2f..eed6551ae 100644 --- a/deluge/ui/gtkui/gtkui.py +++ b/deluge/ui/gtkui/gtkui.py @@ -114,7 +114,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,