1
0

revert PR #1492. clear clipboard instead

This commit is contained in:
ThomasV
2015-10-31 11:47:42 +01:00
parent dae9352c18
commit 77d6ee74f9
4 changed files with 13 additions and 28 deletions

View File

@@ -143,7 +143,7 @@ class ElectrumGui:
action = wallet.get_action()
# run wizard
if action is not None:
wizard = InstallWizard(self.config, self.network, storage)
wizard = InstallWizard(self.app, self.config, self.network, storage)
wallet = wizard.run(action)
# keep current wallet
if not wallet:
@@ -174,7 +174,7 @@ class ElectrumGui:
if storage.file_exists:
QMessageBox.critical(None, "Error", _("File exists"))
return
wizard = InstallWizard(self.config, self.network, storage)
wizard = InstallWizard(self.app, self.config, self.network, storage)
wallet = wizard.run('new')
if wallet:
self.new_window(full_path)