mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-23 19:47:39 +02:00
Merge pull request #1027 from alicevision/fix/enabledPropertyInGroupAttributes
[core] GroupAttribute: check "enabled" property of child params in uid computation
This commit is contained in:
commit
20fa43c1a6
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ class GroupAttribute(Attribute):
|
||||||
def uid(self, uidIndex):
|
def uid(self, uidIndex):
|
||||||
uids = []
|
uids = []
|
||||||
for k, v in self._value.items():
|
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))
|
uids.append(v.uid(uidIndex))
|
||||||
return hashValue(uids)
|
return hashValue(uids)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue