load_wallet: don't hide and show gui unless we start the wizard

This commit is contained in:
ThomasV 2015-08-22 09:27:33 +02:00
parent 679f2fe2b1
commit d895e5d132
1 changed files with 5 additions and 5 deletions

View File

@ -315,16 +315,16 @@ class ElectrumWindow(QMainWindow):
QMessageBox.warning(None, _('Warning'), str(e), _('OK'))
return
action = wallet.get_action()
self.hide()
# run wizard
if action is not None:
self.hide()
wallet = self.gui_object.run_wizard(storage, action)
# keep current wallet
if not wallet:
self.show()
return
else:
wallet.start_threads(self.network)
# keep current wallet
if not wallet:
self.show()
return
# close current wallet
self.close_wallet()
# load new wallet in gui