mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-14 15:27:21 +02:00
[core] Fix connection between uncomputed output and attribute with callback
This commit is contained in:
parent
7c21595da9
commit
ae9ae9b11f
1 changed files with 4 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue