mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -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 []
|
return []
|
||||||
|
|
||||||
def resolveValue(self, alg):
|
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)
|
self.value = self._resolveTemporary(alg)
|
||||||
else:
|
else:
|
||||||
exp = QgsExpression(self.value)
|
exp = QgsExpression(self.value)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user