mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
fix dict vs. list approach
This commit is contained in:
parent
e8f7f1418e
commit
85a3dd1ea6
1 changed files with 3 additions and 3 deletions
|
|
@ -524,7 +524,7 @@ class DictConditionalEntity(ItemEntity):
|
||||||
if value is NOT_SET:
|
if value is NOT_SET:
|
||||||
self.enum_entity.update_default_value(value)
|
self.enum_entity.update_default_value(value)
|
||||||
for children_by_key in self.non_gui_children.values():
|
for children_by_key in self.non_gui_children.values():
|
||||||
for child_obj in children_by_key:
|
for child_obj in children_by_key.values():
|
||||||
child_obj.update_default_value(value)
|
child_obj.update_default_value(value)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
@ -560,7 +560,7 @@ class DictConditionalEntity(ItemEntity):
|
||||||
if value is NOT_SET:
|
if value is NOT_SET:
|
||||||
self.enum_entity.update_default_value(value)
|
self.enum_entity.update_default_value(value)
|
||||||
for children_by_key in self.non_gui_children.values():
|
for children_by_key in self.non_gui_children.values():
|
||||||
for child_obj in children_by_key:
|
for child_obj in children_by_key.values():
|
||||||
child_obj.update_default_value(value)
|
child_obj.update_default_value(value)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
@ -596,7 +596,7 @@ class DictConditionalEntity(ItemEntity):
|
||||||
if value is NOT_SET:
|
if value is NOT_SET:
|
||||||
self.enum_entity.update_default_value(value)
|
self.enum_entity.update_default_value(value)
|
||||||
for children_by_key in self.non_gui_children.values():
|
for children_by_key in self.non_gui_children.values():
|
||||||
for child_obj in children_by_key:
|
for child_obj in children_by_key.values():
|
||||||
child_obj.update_default_value(value)
|
child_obj.update_default_value(value)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue