mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
fixed value assignments
This commit is contained in:
parent
469059fa53
commit
43ba4599ea
1 changed files with 3 additions and 3 deletions
|
|
@ -599,11 +599,11 @@ class DictMutableKeysWidget(BaseWidget):
|
|||
# Swap entities if keys of each other are matching
|
||||
old_key = self.entity.get_child_key(widget.entity)
|
||||
(
|
||||
self.entity.children_by_key[old_key],
|
||||
self.entity.children_by_key[sk_old_key]
|
||||
) = (
|
||||
self.entity.children_by_key[new_key],
|
||||
self.entity.children_by_key[sk_new_key]
|
||||
) = (
|
||||
self.entity.children_by_key[old_key],
|
||||
self.entity.children_by_key[sk_old_key]
|
||||
)
|
||||
|
||||
def add_widget_for_child(self, child_entity, after_widget=None):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue