mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
fixed roots and templates input data
This commit is contained in:
parent
5eb25c7ae3
commit
4d05ebaa71
1 changed files with 2 additions and 2 deletions
|
|
@ -227,7 +227,7 @@ class RootsWidget(QtWidgets.QWidget, ConfigObject):
|
|||
super(RootsWidget, self).__init__(parent)
|
||||
self.setObjectName("RootsWidget")
|
||||
|
||||
input_data = {"is_group": True}
|
||||
input_data["is_group"] = True
|
||||
self.initial_attributes(input_data, parent, False)
|
||||
|
||||
self.key = input_data["key"]
|
||||
|
|
@ -560,7 +560,7 @@ class TemplatesWidget(QtWidgets.QWidget, ConfigObject):
|
|||
def __init__(self, input_data, parent):
|
||||
super(TemplatesWidget, self).__init__(parent)
|
||||
|
||||
input_data = {"is_group": True}
|
||||
input_data["is_group"] = True
|
||||
self.initial_attributes(input_data, parent, False)
|
||||
|
||||
self.key = input_data["key"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue