commit a94789b8efc4f6a41345ab2b4d1b4b3e4d18ce63 parent 322d1bd1d0debe15e5ea06efc9e8e532eab21e6d Author: ThomasV <thomasv@electrum.org> Date: Fri, 12 Jan 2018 12:13:19 +0100 fix #3619: set correct parent window Diffstat:
M | gui/qt/address_dialog.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/address_dialog.py b/gui/qt/address_dialog.py @@ -93,6 +93,6 @@ class AddressDialog(WindowModalDialog): def show_qr(self): text = self.address try: - self.parent.show_qrcode(text, 'Address') + self.parent.show_qrcode(text, 'Address', parent=self) except Exception as e: self.show_message(str(e))