Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] better-looking params ui (removed widget border)
  • Loading branch information
volaya committed Oct 4, 2014
1 parent b114085 commit 46effa1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/gui/ParametersDialog.py
Expand Up @@ -37,6 +37,7 @@ class ParametersDialog(AlgorithmExecutionDialog):
def __init__(self, alg):
self.paramTable = ParametersPanel(self, alg)
self.scrollArea = QtGui.QScrollArea()
self.scrollArea.setFrameShape(QtGui.QFrame.NoFrame);
self.scrollArea.setWidget(self.paramTable)
self.scrollArea.setWidgetResizable(True)
AlgorithmExecutionDialog.__init__(self, alg, self.scrollArea)
Expand Down

0 comments on commit 46effa1

Please sign in to comment.