Skip to content

Commit

Permalink
Merge pull request #3454 from arnaud-morvan/processing_modeler_parame…
Browse files Browse the repository at this point in the history
…ter_extent

[Processing] Fix on extent parameter in modeler parameters dialog
  • Loading branch information
volaya committed Sep 5, 2016
2 parents 8de9757 + b18cfc9 commit f38e03b
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 f38e03b

Please sign in to comment.