Skip to content

Commit

Permalink
[processing] do not reject string parameters if they contain an unpar…
Browse files Browse the repository at this point in the history
…sable expresion
  • Loading branch information
volaya committed May 17, 2016
1 parent 57dc3c7 commit a7f41dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/AlgorithmDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def setParamValue(self, param, widget, alg=None):
try:
text = self.evaluateExpression(text)
except:
return False
pass
return param.setValue(text)
elif isinstance(param, ParameterGeometryPredicate):
return param.setValue(widget.value())
Expand Down

0 comments on commit a7f41dc

Please sign in to comment.