From ecad391157e4881d728429f56fc364bf5fa863a1 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Thu, 10 Jul 2008 22:03:36 +0000 Subject: [PATCH] trick to have the tray icon go away on windows --- deluge/ui/gtkui/systemtray.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/ui/gtkui/systemtray.py b/deluge/ui/gtkui/systemtray.py index 5fcd4120d..c9b717c50 100644 --- a/deluge/ui/gtkui/systemtray.py +++ b/deluge/ui/gtkui/systemtray.py @@ -143,6 +143,7 @@ class SystemTray(component.Component): self.tray_glade.get_widget(widget).hide() except Exception, e: log.debug("Unable to hide system tray menu widgets: %s", e) + self.tray.set_visible(False) def send_status_request(self): client.get_download_rate(self._on_get_download_rate)