From 9dbae6d0aeba9c7191199c06ce6ac6990a39dbe0 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 23 Nov 2013 10:38:02 +0100 Subject: [PATCH] handle multiple selections in receive_menu hook --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index d048f9ca..2ea8b70b 100644 --- a/gui/qt/main_window.py +++ b/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, addr) + run_hook('receive_menu', menu, addrs) menu.exec_(self.receive_list.viewport().mapToGlobal(position))