Correct a bug with autoenabled configuration parameters
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 25 Mar 2009 11:13:18 +0000 (11:13 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 25 Mar 2009 11:13:18 +0000 (11:13 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2415 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BModulePage.py

index 6fbdaaa454572553ffea89719ef60c607752c686..4c282b3a1ae9a61b023473f575e15c7ca346c0e7 100644 (file)
@@ -75,13 +75,15 @@ class BModulePage(BWizardPage):
             self.pageContent.propertyTable.clear()
             if len(configuration) > 0:
                 configurations = self._projectInfoRetrieve("CONFIGURATIONS")[configuration]
-                self.pageContent.propertyTable.setRowCount(len(configurations))
+                self.pageContent.propertyTable.setRowCount(0)
                 index = 0
                 for property in configurations:
                     if "type" in configurations[property]["informations"] and configurations[property]["informations"]["type"] == "autoenabled":
                         ## Doesn't show the hidden fields
                         pass
                     else:
+                        ## Set the row count to the current index + 1
+                        self.pageContent.propertyTable.setRowCount(index + 1)
                         item = QTableWidgetItem(configurations[property]["brief"])
                         item.setData(Qt.UserRole, qvariant_converter.convertString(property))
                         self.pageContent.propertyTable.setItem(index, 0, item)