From 080f681f5d8c2fdaf2577492b7a7bde72c101fbb Mon Sep 17 00:00:00 2001 From: duplo Date: Wed, 4 Feb 2009 18:40:49 +0000 Subject: [PATCH] Remove the spinner (it isn't needed) git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2262 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/BCreationPage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wizard/BCreationPage.py b/wizard/BCreationPage.py index 86fae838..b58c83c5 100644 --- a/wizard/BCreationPage.py +++ b/wizard/BCreationPage.py @@ -40,10 +40,12 @@ class BCreationPage(BWizardPage): self.connect(self.pageContent.createButton, SIGNAL("clicked(bool)"), self._createProject) def _createProject(self): + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) self._confirmGroup.setVisible(False) bertos_utils.createBertosProject(self.wizard().project()) self._finalGroup.setVisible(True) self._completed = True + QApplication.restoreOverrideCursor() self.emit(SIGNAL("completeChanged()")) def isComplete(self): -- 2.25.1