We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09195fb commit 938f261Copy full SHA for 938f261
python/plugins/processing/gui/wrappers.py
@@ -763,7 +763,7 @@ def value(self):
763
if self.dialogType == DIALOG_STANDARD:
764
try:
765
layer = self.combo.currentLayer()
766
- if layer:
+ if layer is not None:
767
return layer
768
else:
769
return self.combo.currentText()
@@ -1226,7 +1226,7 @@ def value(self):
1226
1227
1228
1229
1230
1231
1232
0 commit comments