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:
authorKostas Karmas <konskarm@gmail.com>2021-02-08 13:58:12 +0300
committerKostas Karmas <konskarm@gmail.com>2021-02-08 13:58:12 +0300
commit56b3cc5fe50b6ac07c631e77f9227e94ebdf80dd (patch)
treeaf37265f9042d9bcccab5f89f24c77dfb57b44b0
parentf8a9e7f2d27a96b8a657cf7772773f43d65ecebc (diff)
Don't stop the readLocalFile process if there is no workspace reader
Or else the non-project files, which do not get a workspace reader by definition, won't be opened in Cura. CURA-7996
-rwxr-xr-xcura/CuraApplication.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index de29e56130..766d49fcea 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -1758,10 +1758,6 @@ class CuraApplication(QtApplication):
is_project_file = self.checkIsValidProjectFile(file)
- if is_project_file is False:
- # The file isn't a valid project file so abort reading it.
- return
-
if project_mode is None:
project_mode = self.getPreferences().getValue("cura/choice_on_open_project")