From: duplo Date: Wed, 22 Apr 2009 11:20:55 +0000 (+0000) Subject: Show the scroll area only where there are one or more used plugins. X-Git-Tag: 2.1.0~58 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=87bbb18b93461ad7889de3a1e918e930ddf9cc7f;p=bertos.git Show the scroll area only where there are one or more used plugins. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2624 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 254068c4..ca732244 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -37,7 +37,6 @@ class BFinalPage(BWizardPage): bertos_utils.createBertosProject(self.project()) QApplication.instance().restoreOverrideCursor() if os.name == "nt": - self.pageContent.setVisible(True) output = self.projectInfo("OUTPUT") import winreg_importer command_lines = winreg_importer.getCommandLines() @@ -50,6 +49,8 @@ class BFinalPage(BWizardPage): self._plugin_dict[check] = plugin widget = QWidget() widget.setLayout(layout) + if len(self._plugin_dict) > 0: + self.pageContent.scrollArea.setVisible(True) self.pageContent.scrollArea.setWidget(widget) def setupUi(self):