Skip to content

Commit

Permalink
Merge pull request #1027 from alicevision/fix/enabledPropertyInGroupA…
Browse files Browse the repository at this point in the history
…ttributes

[core] GroupAttribute: check "enabled" property of child params in uid computation
  • Loading branch information
fabiencastan authored Aug 11, 2020
2 parents 9a0965c + 588c2e5 commit 20fa43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshroom/core/attribute.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 20fa43c

Please sign in to comment.