make restore thread a daemon

This commit is contained in:
ThomasV 2016-04-05 10:49:28 +02:00
parent 7ea2a217cd
commit 8e6e287802
1 changed files with 1 additions and 0 deletions

View File

@ -235,6 +235,7 @@ class InstallWizard(QDialog, MessageBoxMixin, WizardBase):
self.emit(QtCore.SIGNAL('synchronized'), msg) self.emit(QtCore.SIGNAL('synchronized'), msg)
self.connect(self, QtCore.SIGNAL('synchronized'), self.show_message) self.connect(self, QtCore.SIGNAL('synchronized'), self.show_message)
t = threading.Thread(target = task) t = threading.Thread(target = task)
t.daemon = True
t.start() t.start()
else: else:
msg = _("This wallet was restored offline. It may " msg = _("This wallet was restored offline. It may "