From: duplo Date: Thu, 19 Feb 2009 14:07:19 +0000 (+0000) Subject: Use the brief instead of the parameter name showing the parameter list in the summary... X-Git-Tag: 2.1.0~322 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=920eb05b3142d4315a694bbce9433cb95955c754;p=bertos.git Use the brief instead of the parameter name showing the parameter list in the summary page git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2360 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BCreationPage.py b/wizard/BCreationPage.py index ae1e71cb..e83f4594 100644 --- a/wizard/BCreationPage.py +++ b/wizard/BCreationPage.py @@ -66,7 +66,7 @@ class BCreationPage(BWizardPage): moduleItem = QTreeWidgetItem(moduleTitle, QStringList([module + " - " + information["description"]])) if len(information["configuration"]) > 0: for property, data in configurations[information["configuration"]].items(): - configurationItem = QTreeWidgetItem(moduleItem, QStringList([data["description"] + " - " + data["value"]])) + configurationItem = QTreeWidgetItem(moduleItem, QStringList([data["brief"] + " " + data["value"]])) topLevel.append(moduleTitle) self.pageContent.summaryTree.insertTopLevelItems(0, topLevel)