mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
convert data from gui data t o config data
This commit is contained in:
parent
9693a6a37b
commit
93f7391e5a
1 changed files with 2 additions and 2 deletions
|
|
@ -126,7 +126,7 @@ class SystemWidget(QtWidgets.QWidget):
|
|||
if value is not lib.NOT_SET:
|
||||
_data.update(value)
|
||||
|
||||
values = _data["system"]
|
||||
values = lib.convert_gui_data_to_overrides(_data.get("system", {}))
|
||||
|
||||
dirpath = os.path.dirname(SYSTEM_CONFIGURATIONS_PATH)
|
||||
if not os.path.exists(dirpath):
|
||||
|
|
@ -456,7 +456,7 @@ class ProjectWidget(QtWidgets.QWidget):
|
|||
if value is not lib.NOT_SET:
|
||||
_data.update(value)
|
||||
|
||||
output = _data["project"]
|
||||
output = lib.convert_gui_data_to_overrides(_data.get("project", {}))
|
||||
|
||||
dirpath = os.path.dirname(PROJECT_CONFIGURATIONS_PATH)
|
||||
if not os.path.exists(dirpath):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue