Merge pull request #30407 from All4Gis/master

[processing] Fix exception in BatchInputSelectionPanel
This commit is contained in:
Alexander Bruy 2019-06-26 13:10:48 +03:00 committed by GitHub
commit d0926f96c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1009,7 +1009,7 @@ class MapLayerWidgetWrapper(WidgetWrapper):
if self.dialogType == DIALOG_STANDARD:
return self.combo.value()
elif self.dialogType == DIALOG_BATCH:
return self.widget.value()
return self.widget.getValue()
else:
def validator(v):
if not bool(v):