Skip to content

Commit fa7879a

Browse files
committed
[processing] Correct management of optional rasters in batch mode. Fixes #19115
1 parent 8c689b2 commit fa7879a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/BatchInputSelectionPanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def textEditingFinished(self):
183183
self.valueChanged.emit()
184184

185185
def value(self):
186-
return self._value
186+
return self._value if self._value else None
187187

188188
def setValue(self, value):
189189
self._value = value

0 commit comments

Comments
 (0)