Skip to content

Commit

Permalink
[processing] fix method name in GUI wrapper for batch processing
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and nyalldawson committed Nov 2, 2020
1 parent a2feb59 commit ef52b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/wrappers.py
Expand Up @@ -804,7 +804,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 ef52b5f

Please sign in to comment.