Skip to content

Commit

Permalink
[processing] Correct management of optional rasters in batch mode. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
luipir committed Jun 5, 2018
1 parent 8c689b2 commit fa7879a
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 fa7879a

Please sign in to comment.