Browse Source

Merge pull request #453 from tkhaew/master

Add addr value to receive menu hook
283
ThomasV 12 years ago
parent
commit
68e874fd86
  1. 2
      gui/qt/main_window.py
  2. 2
      plugins/pointofsale.py

2
gui/qt/main_window.py

@ -1163,7 +1163,7 @@ class ElectrumWindow(QMainWindow):
menu.addAction(_("Send From"), lambda: self.send_from_addresses(addrs))
run_hook('receive_menu', menu)
run_hook('receive_menu', menu, addr)
menu.exec_(self.receive_list.viewport().mapToGlobal(position))

2
plugins/pointofsale.py

@ -251,7 +251,7 @@ class Plugin(BasePlugin):
item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled)
def receive_menu(self, menu):
def receive_menu(self, menu, addr):
menu.addAction(_("Request amount"), self.edit_amount)
menu.addAction(_("Show Invoice"), lambda: self.toggle_QR_window(True))

Loading…
Cancel
Save