From 1808ac506a5b7fb5053b67cb9e2227f6a4cadd43 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 26 Jun 2017 22:04:42 +0100 Subject: [PATCH] [GTKUI] Restore removed os_check for systray icon status_icon_new_from_icon_name does not work on OSX --- deluge/ui/gtkui/systemtray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/systemtray.py b/deluge/ui/gtkui/systemtray.py index 6212d969e..d2ed55a35 100644 --- a/deluge/ui/gtkui/systemtray.py +++ b/deluge/ui/gtkui/systemtray.py @@ -98,7 +98,7 @@ class SystemTray(component.Component): else: log.debug('Enabling the system tray icon..') - if windows_check(): + if windows_check() or osx_check(): self.tray = status_icon_new_from_pixbuf(get_logo(32)) else: self.tray = status_icon_new_from_icon_name('deluge')