tmake restore thread a daemon - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 8e6e287802b078ad7afa87e5f96a23942f112023 DIR parent 7ea2a217cdb7c64219a9360d043fd589efbc82f9 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 5 Apr 2016 10:49:28 +0200 make restore thread a daemon Diffstat: M gui/qt/installwizard.py | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) --- DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -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 "