diff --git a/meshroom/core/attribute.py b/meshroom/core/attribute.py index cb253923d6..d3756abbe3 100644 --- a/meshroom/core/attribute.py +++ b/meshroom/core/attribute.py @@ -434,7 +434,7 @@ def childAttribute(self, key): def uid(self, uidIndex): uids = [] for k, v in self._value.items(): - if uidIndex in v.desc.uid: + if v.enabled and uidIndex in v.desc.uid: uids.append(v.uid(uidIndex)) return hashValue(uids)