Map new conan local cache resources

Contributes to CURA-9365
This commit is contained in:
j.spijker@ultimaker.com 2022-06-29 15:42:24 +02:00 committed by Jelle Spijker
parent 1bb1efd429
commit 2cee093d0b

View file

@ -356,7 +356,8 @@ class CuraApplication(QtApplication):
Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources"))
if not hasattr(sys, "frozen"):
Resources.addSecureSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "resources"))
Resources.addSecureSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "res", "resources"))
Resources.addSecureSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "resources"))
Resources.addSecureSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "plugins"))
@classmethod
def _initializeSettingDefinitions(cls):