mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
[GTK] Fix systray popup TypeError
An incorrect number of arguments supplied to GtkMenu.popup
This commit is contained in:
parent
9f9f564e62
commit
39783c7703
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ class SystemTray(component.Component):
|
||||||
popup_function = None
|
popup_function = None
|
||||||
button = 0
|
button = 0
|
||||||
self.tray_menu.popup(
|
self.tray_menu.popup(
|
||||||
None, None, None, popup_function, status_icon, button, activate_time
|
None, None, popup_function, status_icon, button, activate_time
|
||||||
)
|
)
|
||||||
|
|
||||||
def on_menuitem_show_deluge_activate(self, menuitem):
|
def on_menuitem_show_deluge_activate(self, menuitem):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue