From 4d984d2a8c993d272f0baede785d26c3c727e4d9 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 2 Apr 2021 11:38:15 +0200 Subject: [PATCH] renamed ftrack icon names --- .../event_handlers_user/action_clean_hierarchical_attributes.py | 2 +- .../ftrack/event_handlers_user/action_create_cust_attrs.py | 2 +- .../ftrack/event_handlers_user/action_delete_old_versions.py | 2 +- .../modules/ftrack/event_handlers_user/action_job_killer.py | 2 +- .../event_handlers_user/action_store_thumbnails_to_avalon.py | 2 +- .../modules/ftrack/event_handlers_user/action_sync_to_avalon.py | 2 +- .../ftrack/action_icons/{PypeAdmin.svg => OpenPypeAdmin.svg} | 0 .../ftrack/action_icons/{PypeDoctor.svg => OpenPypeDoctor.svg} | 0 .../ftrack/action_icons/{PypeUpdate.svg => OpenPypeUpdate.svg} | 0 9 files changed, 6 insertions(+), 6 deletions(-) rename openpype/resources/ftrack/action_icons/{PypeAdmin.svg => OpenPypeAdmin.svg} (100%) rename openpype/resources/ftrack/action_icons/{PypeDoctor.svg => OpenPypeDoctor.svg} (100%) rename openpype/resources/ftrack/action_icons/{PypeUpdate.svg => OpenPypeUpdate.svg} (100%) diff --git a/openpype/modules/ftrack/event_handlers_user/action_clean_hierarchical_attributes.py b/openpype/modules/ftrack/event_handlers_user/action_clean_hierarchical_attributes.py index 4b1c1328df..c326c56a7c 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_clean_hierarchical_attributes.py +++ b/openpype/modules/ftrack/event_handlers_user/action_clean_hierarchical_attributes.py @@ -9,7 +9,7 @@ class CleanHierarchicalAttrsAction(BaseAction): label = "OpenPype Admin" variant = "- Clean hierarchical custom attributes" description = "Unset empty hierarchical attribute values." - icon = statics_icon("ftrack", "action_icons", "PypeAdmin.svg") + icon = statics_icon("ftrack", "action_icons", "OpenPypeAdmin.svg") all_project_entities_query = ( "select id, name, parent_id, link" diff --git a/openpype/modules/ftrack/event_handlers_user/action_create_cust_attrs.py b/openpype/modules/ftrack/event_handlers_user/action_create_cust_attrs.py index 6daaacf98b..0ebd221e9f 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_create_cust_attrs.py +++ b/openpype/modules/ftrack/event_handlers_user/action_create_cust_attrs.py @@ -131,7 +131,7 @@ class CustomAttributes(BaseAction): variant = '- Create/Update Avalon Attributes' #: Action description. description = 'Creates Avalon/Mongo ID for double check' - icon = statics_icon("ftrack", "action_icons", "PypeAdmin.svg") + icon = statics_icon("ftrack", "action_icons", "OpenPypeAdmin.svg") settings_key = "create_update_attributes" required_keys = ("key", "label", "type") diff --git a/openpype/modules/ftrack/event_handlers_user/action_delete_old_versions.py b/openpype/modules/ftrack/event_handlers_user/action_delete_old_versions.py index 99f5f50f93..dbddc7a95e 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_delete_old_versions.py +++ b/openpype/modules/ftrack/event_handlers_user/action_delete_old_versions.py @@ -21,7 +21,7 @@ class DeleteOldVersions(BaseAction): "Delete files from older publishes so project can be" " archived with only lates versions." ) - icon = statics_icon("ftrack", "action_icons", "PypeAdmin.svg") + icon = statics_icon("ftrack", "action_icons", "OpenPypeAdmin.svg") dbcon = AvalonMongoDB() diff --git a/openpype/modules/ftrack/event_handlers_user/action_job_killer.py b/openpype/modules/ftrack/event_handlers_user/action_job_killer.py index 4c9fa645a2..47ed1e7895 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_job_killer.py +++ b/openpype/modules/ftrack/event_handlers_user/action_job_killer.py @@ -13,7 +13,7 @@ class JobKiller(BaseAction): #: Action description. description = 'Killing selected running jobs' #: roles that are allowed to register this action - icon = statics_icon("ftrack", "action_icons", "PypeAdmin.svg") + icon = statics_icon("ftrack", "action_icons", "OpenPypeAdmin.svg") settings_key = "job_killer" def discover(self, session, entities, event): diff --git a/openpype/modules/ftrack/event_handlers_user/action_store_thumbnails_to_avalon.py b/openpype/modules/ftrack/event_handlers_user/action_store_thumbnails_to_avalon.py index 390ac6b730..4464e51d3d 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_store_thumbnails_to_avalon.py +++ b/openpype/modules/ftrack/event_handlers_user/action_store_thumbnails_to_avalon.py @@ -21,7 +21,7 @@ class StoreThumbnailsToAvalon(BaseAction): # Action description description = 'Test action' # roles that are allowed to register this action - icon = statics_icon("ftrack", "action_icons", "PypeAdmin.svg") + icon = statics_icon("ftrack", "action_icons", "OpenPypeAdmin.svg") settings_key = "store_thubmnail_to_avalon" thumbnail_key = "AVALON_THUMBNAIL_ROOT" diff --git a/openpype/modules/ftrack/event_handlers_user/action_sync_to_avalon.py b/openpype/modules/ftrack/event_handlers_user/action_sync_to_avalon.py index 923bce099a..89fac7cf80 100644 --- a/openpype/modules/ftrack/event_handlers_user/action_sync_to_avalon.py +++ b/openpype/modules/ftrack/event_handlers_user/action_sync_to_avalon.py @@ -41,7 +41,7 @@ class SyncToAvalonLocal(BaseAction): #: priority priority = 200 #: roles that are allowed to register this action - icon = statics_icon("ftrack", "action_icons", "PypeAdmin.svg") + icon = statics_icon("ftrack", "action_icons", "OpenPypeAdmin.svg") settings_key = "sync_to_avalon_local" diff --git a/openpype/resources/ftrack/action_icons/PypeAdmin.svg b/openpype/resources/ftrack/action_icons/OpenPypeAdmin.svg similarity index 100% rename from openpype/resources/ftrack/action_icons/PypeAdmin.svg rename to openpype/resources/ftrack/action_icons/OpenPypeAdmin.svg diff --git a/openpype/resources/ftrack/action_icons/PypeDoctor.svg b/openpype/resources/ftrack/action_icons/OpenPypeDoctor.svg similarity index 100% rename from openpype/resources/ftrack/action_icons/PypeDoctor.svg rename to openpype/resources/ftrack/action_icons/OpenPypeDoctor.svg diff --git a/openpype/resources/ftrack/action_icons/PypeUpdate.svg b/openpype/resources/ftrack/action_icons/OpenPypeUpdate.svg similarity index 100% rename from openpype/resources/ftrack/action_icons/PypeUpdate.svg rename to openpype/resources/ftrack/action_icons/OpenPypeUpdate.svg