From 56bc717da1fb423b63bea716c097a9f7c8632431 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sun, 10 Jan 2016 12:42:47 +0900 Subject: [PATCH] Encrypt / decrypt: use top level window Show errors on top level window, otherwise MacOSX gets stuck. --- gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 5f65068f..1f883711 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2137,7 +2137,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): message_e.setText(decrypted) except BaseException as e: traceback.print_exc(file=sys.stdout) - self.show_warning(str(e)) + self.top_level_window().show_warning(str(e)) def do_encrypt(self, message_e, pubkey_e, encrypted_e): @@ -2148,7 +2148,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): encrypted_e.setText(encrypted) except BaseException as e: traceback.print_exc(file=sys.stdout) - self.show_warning(str(e)) + self.top_level_window().show_warning(str(e)) def encrypt_message(self, address = ''):