Skip to content

Commit

Permalink
[processing] correctly resolve values for hidden outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 5, 2016
1 parent 1a95110 commit db7b1e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/plugins/processing/core/outputs.py
Expand Up @@ -104,7 +104,9 @@ def _supportedExtensions(self):
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)
Expand Down

0 comments on commit db7b1e7

Please sign in to comment.