X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBCreationPage.py;h=b58c83c524d0ec6f12fbc0e3e57445c2da5992e2;hb=a3f8182f09904311ccd71676d8a348900774c74c;hp=86fae8380ef6620b1c6484186e58ae0bdb56256d;hpb=bc272fbd8f39f150b671bfb25725d4c8d9873e2e;p=bertos.git 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):