Skip to content

Commit

Permalink
put modeler parameters panel in a scroll widget
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 15, 2012
1 parent 2754df0 commit 4b76e69
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions python/plugins/sextante/modeler/ModelerParametersDialog.py
Expand Up @@ -137,10 +137,13 @@ def setupUi(self):
self.verticalLayout2.setSpacing(2)
self.verticalLayout2.setMargin(0)
self.tabWidget = QtGui.QTabWidget()
self.tabWidget.setMinimumWidth(300)
self.tabWidget.setMinimumWidth(300)
self.paramPanel = QtGui.QWidget()
self.paramPanel.setLayout(self.verticalLayout)
self.tabWidget.addTab(self.paramPanel, "Parameters")
self.scrollArea = QtGui.QScrollArea()
self.scrollArea.setWidget(self.paramPanel)
self.scrollArea.setWidgetResizable(True)
self.tabWidget.addTab(self.scrollArea, "Parameters")
self.webView = QtWebKit.QWebView()
html = None
try:
Expand Down

0 comments on commit 4b76e69

Please sign in to comment.