Skip to content

Commit ae9ae9b

Browse files
committed
[core] Fix connection between uncomputed output and attribute with callback
1 parent 7c21595 commit ae9ae9b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

meshroom/core/node.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -961,6 +961,10 @@ def _onAttributeChanged(self, attr: Attribute):
961961
# And we do not want notifications during the graph processing.
962962
return
963963

964+
if attr.value is None:
965+
# Discard dynamic values depending on the graph processing.
966+
return
967+
964968
callback = self._getAttributeChangedCallback(attr)
965969

966970
if callback:

0 commit comments

Comments
 (0)