mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
renamed overrides getter function
This commit is contained in:
parent
025cf4e8cc
commit
ca7663bbc9
2 changed files with 10 additions and 10 deletions
|
|
@ -12,8 +12,8 @@ from pype.settings.lib import (
|
|||
reset_default_settings,
|
||||
get_default_settings,
|
||||
|
||||
get_studio_overrides_system_settings,
|
||||
get_studio_overrides_default_project_settings,
|
||||
get_studio_system_settings_overrides,
|
||||
get_studio_project_settings_overrides,
|
||||
get_studio_overrides_default_project_anatomy,
|
||||
|
||||
get_project_settings_overrides,
|
||||
|
|
@ -384,7 +384,7 @@ class SystemWidget(SettingsCategoryWidget):
|
|||
system_values = lib.NOT_SET
|
||||
else:
|
||||
system_values = lib.convert_overrides_to_gui_data(
|
||||
{self.main_schema_key: get_studio_overrides_system_settings()}
|
||||
{self.main_schema_key: get_studio_system_settings_overrides()}
|
||||
)
|
||||
|
||||
for input_field in self.input_fields:
|
||||
|
|
@ -610,7 +610,7 @@ class ProjectWidget(SettingsCategoryWidget):
|
|||
studio_values = lib.convert_overrides_to_gui_data({
|
||||
self.main_schema_key: {
|
||||
PROJECT_SETTINGS_KEY: (
|
||||
get_studio_overrides_default_project_settings()
|
||||
get_studio_project_settings_overrides()
|
||||
),
|
||||
PROJECT_ANATOMY_KEY: (
|
||||
get_studio_overrides_default_project_anatomy()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue