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.
1 parent 7fdb5cc commit 0231fdcCopy full SHA for 0231fdc
meshroom/core/node.py
@@ -933,6 +933,10 @@ def _updateChunks(self):
933
def _getAttributeChangedCallback(self, attr: Attribute) -> Optional[Callable]:
934
"""Get the node descriptor-defined value changed callback associated to `attr` if any."""
935
936
+ # Callbacks cannot be defined on nested attributes.
937
+ if attr.root is not None:
938
+ return None
939
+
940
attrCapitalizedName = attr.name[:1].upper() + attr.name[1:]
941
callbackName = f"on{attrCapitalizedName}Changed"
942
0 commit comments