From af46f838303463607ddd5836e6cd7431cff116eb Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 22 Jan 2017 01:01:52 +0100 Subject: [PATCH] fix #2124 --- gui/qt/installwizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index b2a5c143..31ed08c5 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -345,6 +345,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): self.refresh_gui() t = threading.Thread(target = task) t.start() + t.join() @wizard_dialog def choice_dialog(self, title, message, choices, run_next):