mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 13:06:28 +02:00
[core] GroupAttribute: check "enabled" property of child params in uid computation
Disabled params should not be part of the UID computation, even for child attributes of an enabled GroupAttribute.
This commit is contained in:
parent
9a0965c5db
commit
588c2e59b8
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ class GroupAttribute(Attribute):
|
|||
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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue