Module: deluge Branch: 1.3-stable Commit: 5bfb98f9a95d19df95766a0b51ddb31509d43ea0
Author: Calum Lind <[email protected]> Date: Sun May 22 19:58:07 2011 +0100 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 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/ui/gtkui/gtkui.py b/deluge/ui/gtkui/gtkui.py index e9c4c54..1127907 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, -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
