summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/path_combo_chooser.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2019-06-11 21:28:22 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2019-06-12 09:40:14 +0100
commitf61001a15d5fa6c4e3a8f536da047cb493aacc95 (patch)
tree330353facc84216da1c422d7ff515a9991ccfb3f /deluge/ui/gtk3/path_combo_chooser.py
parent86ddadacf7ef061b303e769a64fc8db2960e89e8 (diff)
downloaddeluge-f61001a15d5fa6c4e3a8f536da047cb493aacc95.tar.gz
deluge-f61001a15d5fa6c4e3a8f536da047cb493aacc95.tar.bz2
deluge-f61001a15d5fa6c4e3a8f536da047cb493aacc95.zip
[GTK] Fix missing argument for GtkMenu.popup()
Missed while converting from pygtk to Gtk3 Fixes: #3266
Diffstat (limited to 'deluge/ui/gtk3/path_combo_chooser.py')
-rwxr-xr-xdeluge/ui/gtk3/path_combo_chooser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/gtk3/path_combo_chooser.py b/deluge/ui/gtk3/path_combo_chooser.py
index 892b5b472..c26289d80 100755
--- a/deluge/ui/gtk3/path_combo_chooser.py
+++ b/deluge/ui/gtk3/path_combo_chooser.py
@@ -403,7 +403,7 @@ class StoredValuesList(ValueList):
menuitem_edit.connect('activate', on_edit_clicked, path)
menuitem_remove.connect('activate', on_remove_clicked, path)
- self.path_list_popup.popup(None, None, None, event.button, time, data=path)
+ self.path_list_popup.popup(None, None, None, path, event.button, time)
self.path_list_popup.show_all()
def remove_selected_path(self):