Browse Source

Pass name of handlers into Callback (more minigalaxy)

unifiedWindowUI
Luke Murphy 4 years ago
parent
commit
4159c161a2
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 4
      dropship/ui_templates.py

4
dropship/ui_templates.py

@ -24,7 +24,7 @@ class PendingTransferRow(Gtk.ListBoxRow):
self.fileNameLabel.set_text(fileName)
self.transferCodeButton.set_label(transferCode)
@Gtk.Template.Callback()
@Gtk.Template.Callback("copy_transfer_code")
def copy_transfer_code(self, widget):
"""
what to do when we press the button:
@ -36,7 +36,7 @@ class PendingTransferRow(Gtk.ListBoxRow):
clipboard = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD)
clipboard.set_text(code, -1) # -1 is auto-size
@Gtk.Template.Callback()
@Gtk.Template.Callback("cancel_transfer")
def cancel_transfer(self, widget):
"""
cancel the transfer

Loading…
Cancel
Save