electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 9dbae6d0aeba9c7191199c06ce6ac6990a39dbe0
parent 68e874fd86332bb4d606ae5fa8f89a10e8f2d3a7
Author: ThomasV <thomasv@gitorious>
Date:   Sat, 23 Nov 2013 10:38:02 +0100

handle multiple selections in receive_menu hook

Diffstat:
Mgui/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 @@ -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))