Skip to content

Commit

Permalink
[processing] fix method name in GUI wrapper
Browse files Browse the repository at this point in the history
(cherry picked from commit fa1b704)
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Nov 20, 2020
1 parent ad49096 commit cf0a216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/wrappers.py
Expand Up @@ -803,7 +803,7 @@ def value(self):
False)
return [options[i] if isinstance(i, int) else i for i in self.widget.selectedoptions]
elif self.dialogType == DIALOG_BATCH:
return self.widget.value()
return self.widget.getValue()
else:
options = self._getOptions()
values = [options[i] if isinstance(i, int) else QgsProcessingModelChildParameterSource.fromStaticValue(i)
Expand Down

0 comments on commit cf0a216

Please sign in to comment.