Browse Source

Encrypt / decrypt: use top level window

Show errors on top level window, otherwise MacOSX gets stuck.
283
Neil Booth 9 years ago
parent
commit
56bc717da1
  1. 4
      gui/qt/main_window.py

4
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 = ''):

Loading…
Cancel
Save