mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +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
|
||||
button = 0
|
||||
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):
|
||||
|
|
Loading…
Add table
Reference in a new issue