[core] Fix connection between uncomputed output and attribute with callback

This commit is contained in:
Yann Lanthony 2024-10-26 23:40:21 +02:00
parent 7c21595da9
commit ae9ae9b11f

View file

@ -961,6 +961,10 @@ class BaseNode(BaseObject):
# And we do not want notifications during the graph processing.
return
if attr.value is None:
# Discard dynamic values depending on the graph processing.
return
callback = self._getAttributeChangedCallback(attr)
if callback: