From 8e6e287802b078ad7afa87e5f96a23942f112023 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 5 Apr 2016 10:49:28 +0200 Subject: [PATCH] make restore thread a daemon --- gui/qt/installwizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 7843a592..23a5ca6e 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -235,6 +235,7 @@ class InstallWizard(QDialog, MessageBoxMixin, WizardBase): self.emit(QtCore.SIGNAL('synchronized'), msg) self.connect(self, QtCore.SIGNAL('synchronized'), self.show_message) t = threading.Thread(target = task) + t.daemon = True t.start() else: msg = _("This wallet was restored offline. It may "