Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] Fix ModelerParametersDialog when len(widget) == 0
  • Loading branch information
arnaud-morvan committed Feb 10, 2017
1 parent c768edf commit 7bffef7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -146,7 +146,7 @@ def setupUi(self):
self.wrappers[param.name] = wrapper

widget = wrapper.widget
if widget:
if widget is not None:
self.valueItems[param.name] = widget
if param.name in list(tooltips.keys()):
tooltip = tooltips[param.name]
Expand Down

0 comments on commit 7bffef7

Please sign in to comment.