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
diff options
context:
space:
mode:
authorCasper Lamboo <c.lamboo@ultimaker.com>2022-05-11 11:12:13 +0300
committerGitHub <noreply@github.com>2022-05-11 11:12:13 +0300
commite541eedde9a7387668fcc9d43efd3034ac2c31ae (patch)
tree8fb2ae03da851d73a0d0e011b0a4bd6416b77b5f
parentf05e067f39604b481b7af836d5958ecb06398342 (diff)
parent4fd0d34b1cfaab47d71cedd90a2d65e0decd193e (diff)
Merge pull request #12162 from Ultimaker/CURA-9147_double_resource_paths
Remove extra resource path from Python file
-rwxr-xr-xcura/CuraApplication.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index a242aa5363..ee3c6e361e 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -349,7 +349,6 @@ class CuraApplication(QtApplication):
app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable)))
Resources.addSearchPath(os.path.join(app_root, "share", "cura", "resources"))
- Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "share", "cura", "resources"))
Resources.addSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources"))
if not hasattr(sys, "frozen"):