We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4ad1de2 + a293c67 commit 7d1ebe6Copy full SHA for 7d1ebe6
meshroom/core/attribute.py
@@ -765,7 +765,7 @@ def hasOutputConnections(self):
765
if not self.node.graph or not self.node.graph.edges:
766
return False
767
768
- return next((edge for edge in self.node.graph.edges.values() if edge.src in self._value), None) is not None or \
+ return next((edge for edge in self.node.graph.edges.values() if edge.src == self), None) is not None or \
769
any(attr.hasOutputConnections for attr in self._value if hasattr(attr, 'hasOutputConnections'))
770
771
# override
0 commit comments