From feebd0747cc5f1c3199f0716cef4ab0ea06f2160 Mon Sep 17 00:00:00 2001 From: duplo Date: Fri, 21 May 2010 14:08:41 +0000 Subject: [PATCH] Don't show the Congratulation message until the project is really created :) git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3783 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/BFinalPage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 4963f40d..020b5a58 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -54,6 +54,7 @@ class BFinalPage(BWizardPage): ## Overloaded BWizardPage methods ## def reloadData(self): + self.setVisible(False) """ Overload of the BWizardPage reloadData method. """ @@ -72,6 +73,7 @@ class BFinalPage(BWizardPage): return finally: QApplication.instance().restoreOverrideCursor() + self.setVisible(True) self._plugin_dict = {} if os.name == "nt": output = self.projectInfo("OUTPUT") -- 2.25.1