Skip to content

Commit

Permalink
Merge pull request #7180 from luipir/processing_optional_value_defaul…
Browse files Browse the repository at this point in the history
…t_in_batch_fix19115

[processing] Correct management of optional rasters in batch mode. Fixes #19115
  • Loading branch information
luipir committed Jun 5, 2018
2 parents c61e482 + fa7879a commit b2fce73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchInputSelectionPanel.py
Expand Up @@ -183,7 +183,7 @@ def textEditingFinished(self):
self.valueChanged.emit()

def value(self):
return self._value
return self._value if self._value else None

def setValue(self, value):
self._value = value
Expand Down

0 comments on commit b2fce73

Please sign in to comment.