Skip to content

Commit

Permalink
Fix on extent parameter in modeler parameters dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-morvan committed Sep 4, 2016
1 parent 01da222 commit b18cfc9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/plugins/processing/modeler/ModelerParametersDialog.py
Expand Up @@ -513,16 +513,15 @@ def setPreviousValues(self):
ParameterBoolean,
ParameterExtent,
ParameterFile,
ParameterPoint
ParameterPoint,
ParameterCrs
)):
self.setComboBoxValue(widget, value, param)
elif isinstance(param, ParameterString):
if param.multiline:
widget.setValue(value)
else:
self.setComboBoxValue(widget, value, param)
elif isinstance(param, ParameterCrs):
widget.setAuthId(value)
elif isinstance(param, ParameterFixedTable):
pass # TODO!
elif isinstance(param, ParameterMultipleInput):
Expand Down

0 comments on commit b18cfc9

Please sign in to comment.