From: duplo Date: Wed, 4 Feb 2009 18:40:49 +0000 (+0000) Subject: Remove the spinner (it isn't needed) X-Git-Tag: 2.1.0~420 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=080f681f5d8c2fdaf2577492b7a7bde72c101fbb;p=bertos.git Remove the spinner (it isn't needed) git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2262 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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):