X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBCpuPage.py;h=3658635f8b2e904f54c0ce3a55974a117c67d2f2;hb=861b72bbf12340a6d838923e09db145d28538697;hp=3fc339f25c37b37adda8b500381b5085a07df6c3;hpb=71696266dfa3a8fac8f43baae206e99eedf01762;p=bertos.git diff --git a/wizard/BCpuPage.py b/wizard/BCpuPage.py index 3fc339f2..3658635f 100644 --- a/wizard/BCpuPage.py +++ b/wizard/BCpuPage.py @@ -47,12 +47,14 @@ class BCpuPage(BWizardPage): self.pageContent.descriptionLabel.setText("") def reloadData(self): + QApplication.instance().setOverrideCursor(Qt.WaitCursor) bertos_utils.loadSourceTree(self._project()) self._populateCpuList() cpuName = self._projectInfoRetrieve("CPU_NAME") self._setupUi() if not cpuName is None: self._selectItem(cpuName) + QApplication.instance().restoreOverrideCursor() self.emit(SIGNAL("completeChanged()")) def isComplete(self):