Skip to content

Commit

Permalink
[processing] fix batch execution when alg has ParameterPoint
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Nov 16, 2017
1 parent a6e2ff9 commit 2c034d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -316,6 +316,8 @@ def setParamValue(self, param, widget, alg=None):
return param.setValue(widget.getValue())
elif isinstance(param, ParameterGeometryPredicate):
return param.setValue(widget.value())
elif isinstance(param, ParameterPoint):
return param.setValue(widget.getValue())
else:
return param.setValue(widget.text())

Expand Down

0 comments on commit 2c034d6

Please sign in to comment.