Skip to content

Commit f993ec0

Browse files
slarosanyalldawson
authored andcommitted
Fixes #19417 - AttributeError: 'BatchInputSelectionPanel' object has no attribute 'getText'
1 parent 75fe94f commit f993ec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def value(self):
723723
False)
724724
return [options[i] if isinstance(i, int) else i for i in self.widget.selectedoptions]
725725
elif self.dialogType == DIALOG_BATCH:
726-
return self.widget.getText()
726+
return self.widget.value()
727727
else:
728728
options = self._getOptions()
729729
values = [options[i] if isinstance(i, int) else QgsProcessingModelChildParameterSource.fromStaticValue(i)

0 commit comments

Comments
 (0)