mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 17:04:54 +01:00
fix get child path
This commit is contained in:
parent
0bea699c2b
commit
54470110cf
1 changed files with 1 additions and 1 deletions
|
|
@ -577,7 +577,7 @@ class DictMutableKeysEntity(ItemEntity):
|
|||
|
||||
def get_child_path(self, child_obj):
|
||||
result_key = None
|
||||
for key, _child_obj in self.non_gui_children.items():
|
||||
for key, _child_obj in self.children_by_key.items():
|
||||
if _child_obj is child_obj:
|
||||
result_key = key
|
||||
break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue