From a26101d6b98b6cfa056d41082ca15bbeaf595100 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Fri, 25 Sep 2015 23:44:35 +0100 Subject: [PATCH] [GTKUI] [OSX] Fix empty scrolling status (systray) menu * Same issue as seen on Windows in #302 --- 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 3648e0c4f..9a67582f3 100644 --- a/deluge/ui/gtkui/systemtray.py +++ b/deluge/ui/gtkui/systemtray.py @@ -324,7 +324,7 @@ class SystemTray(component.Component): self.builder.get_object("menuitem_show_deluge").set_active(False) popup_function = gtk.status_icon_position_menu - if deluge.common.windows_check(): + if deluge.common.windows_check() or deluge.common.osx_check(): popup_function = None button = 0 self.tray_menu.popup(None, None, popup_function, button, activate_time, status_icon)