Skip to content

Commit

Permalink
[processing] fixed advanced parameters in modeler
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 5, 2016
1 parent a1642a3 commit 4751b70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/modeler/ModelerParametersDialog.py
Expand Up @@ -157,11 +157,11 @@ def setupUi(self):
widget.setToolTip(tooltip)
if param.isAdvanced:
label.setVisible(self.showAdvanced)
wrapper.setVisible(self.showAdvanced)
widget.setVisible(self.showAdvanced)
self.widgets[param.name] = widget

self.verticalLayout.addWidget(label)
self.verticalLayout.addWidget(wrapper.widget)
self.verticalLayout.addWidget(widget)

for output in self._alg.outputs:
if output.hidden:
Expand Down

0 comments on commit 4751b70

Please sign in to comment.