mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
use 'get_studio_settings' instead of 'get_ayon_settings'
This commit is contained in:
parent
ce87996046
commit
5c73bd4130
2 changed files with 4 additions and 4 deletions
|
|
@ -17,7 +17,7 @@ import appdirs
|
|||
|
||||
from ayon_core.lib import Logger, is_dev_mode_enabled
|
||||
from ayon_core.client import get_ayon_server_api_connection
|
||||
from ayon_core.settings import get_ayon_settings
|
||||
from ayon_core.settings import get_studio_settings
|
||||
|
||||
from .interfaces import (
|
||||
IPluginPaths,
|
||||
|
|
@ -733,7 +733,7 @@ class AddonsManager:
|
|||
# Prepare settings for addons
|
||||
settings = self._settings
|
||||
if settings is None:
|
||||
settings = get_ayon_settings()
|
||||
settings = get_studio_settings()
|
||||
|
||||
modules_settings = {}
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ from ayon_core.lib import (
|
|||
is_staging_enabled,
|
||||
is_running_from_build,
|
||||
)
|
||||
from ayon_core.settings import get_ayon_settings
|
||||
from ayon_core.settings import get_studio_settings
|
||||
from ayon_core.addon import (
|
||||
ITrayAction,
|
||||
ITrayService,
|
||||
|
|
@ -47,7 +47,7 @@ class TrayManager:
|
|||
|
||||
self.log = Logger.get_logger(self.__class__.__name__)
|
||||
|
||||
studio_settings = get_ayon_settings()
|
||||
studio_settings = get_studio_settings()
|
||||
|
||||
update_check_interval = studio_settings["core"].get(
|
||||
"update_check_interval"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue