Skip to content

Commit db7b1e7

Browse files
committedOct 5, 2016
[processing] correctly resolve values for hidden outputs
1 parent 1a95110 commit db7b1e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎python/plugins/processing/core/outputs.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ def _supportedExtensions(self):
104104
return []
105105

106106
def resolveValue(self, alg):
107-
if not self.hidden and not bool(self.value):
107+
if self.hidden:
108+
return
109+
if not bool(self.value):
108110
self.value = self._resolveTemporary(alg)
109111
else:
110112
exp = QgsExpression(self.value)

0 commit comments

Comments
 (0)
Please sign in to comment.