We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4825da5 commit 7e00e7bCopy full SHA for 7e00e7b
python/plugins/sextante/gui/AlgorithmExecutionDialog.py
@@ -138,10 +138,7 @@ def setParamValues(self):
138
139
for param in params:
140
if isinstance(param, ParameterExtent):
141
- value = self.paramTable.valueItems[param.name].getValue()
142
- if value is not None:
143
- param.value = value
144
- else:
+ if not self.setParamValue(param, self.paramTable.valueItems[param.name]):
145
raise AlgorithmExecutionDialog.InvalidParameterValue(param, self.paramTable.valueItems[param.name])
146
147
for output in outputs:
0 commit comments