mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
fix dictionary item initialization
This commit is contained in:
parent
a4a4b5244f
commit
438d456bb5
1 changed files with 2 additions and 0 deletions
|
|
@ -873,6 +873,7 @@ class ListItem(QtWidgets.QWidget, ConfigObject):
|
|||
super(ListItem, self).__init__(parent)
|
||||
|
||||
self.set_default_attributes()
|
||||
|
||||
self._parent = config_parent
|
||||
self._any_parent_is_group = True
|
||||
|
||||
|
|
@ -1149,6 +1150,7 @@ class ModifiableDictItem(QtWidgets.QWidget, ConfigObject):
|
|||
def __init__(self, object_type, input_modifiers, config_parent, parent):
|
||||
super(ModifiableDictItem, self).__init__(parent)
|
||||
|
||||
self.set_default_attributes()
|
||||
self._parent = config_parent
|
||||
|
||||
self.is_single = False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue