From 1fdb8be42ff98a8f06c234d4c1b38058c0b85717 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 30 Sep 2013 17:43:31 +0200 Subject: [PATCH] remove show() in waiting dialog --- gui/qt/installwizard.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index d8d6555a..6521b189 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -146,7 +146,6 @@ class InstallWizard(QDialog): vbox = QVBoxLayout(self) self.waiting_label = QLabel(msg) vbox.addWidget(self.waiting_label) - self.show() t = threading.Thread(target = target) t.start() self.exec_()