mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
[processing] correctly resolve values for hidden outputs
This commit is contained in:
parent
1a95110dcc
commit
db7b1e7890
@ -104,7 +104,9 @@ class Output(object):
|
||||
return []
|
||||
|
||||
def resolveValue(self, alg):
|
||||
if not self.hidden and not bool(self.value):
|
||||
if self.hidden:
|
||||
return
|
||||
if not bool(self.value):
|
||||
self.value = self._resolveTemporary(alg)
|
||||
else:
|
||||
exp = QgsExpression(self.value)
|
||||
|
Loading…
x
Reference in New Issue
Block a user