mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 17:04:54 +01:00
settings_value of mutable dict returns copy with metadata
This commit is contained in:
parent
0dbab45cc6
commit
fea471d634
1 changed files with 2 additions and 3 deletions
|
|
@ -753,9 +753,8 @@ class DictMutableKeysEntity(ItemEntity):
|
|||
return output
|
||||
|
||||
def settings_value(self):
|
||||
output = {}
|
||||
for key, child_obj in self.children_by_key.items():
|
||||
output[key] = child_obj.settings_value()
|
||||
output = copy.deepcopy(self._current_value)
|
||||
output.update(copy.deepcopy(self.current_metadata))
|
||||
return output
|
||||
|
||||
def remove_overrides(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue