Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-06-29 16:42:24 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-06-29 16:42:24 +0300
commit2cee093d0bc852e68da3cfb27782771e22bd3774 (patch)
treec1c007645b3103c93c05234cc2827eb8e0e6ede8 /cura
parent1bb1efd4291dd858e83f0327d366ad0b4ff59585 (diff)
Map new conan local cache resources
Contributes to CURA-9365
Diffstat (limited to 'cura')
-rwxr-xr-xcura/CuraApplication.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index 730b0468da..fbc208b423 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -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):