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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2020-02-26 10:56:05 +0300
committerEnrico Turri <enricoturri@seznam.cz>2020-02-26 10:56:05 +0300
commit69e1e46dd74787b7a5df4d94e3931beb60c293aa (patch)
tree107c20954b755f28254b663329b8ad49d9925af8 /src/slic3r/GUI/Plater.cpp
parentaa8c97803c966b6c40c87e03bd2617d884acd1cd (diff)
Fixed reload from disk for modifiers
Diffstat (limited to 'src/slic3r/GUI/Plater.cpp')
-rw-r--r--src/slic3r/GUI/Plater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index 466fca4ca..0f9b21b78 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -3267,7 +3267,7 @@ void Plater::priv::reload_from_disk()
else
missing_input_paths.push_back(volume->source.input_file);
}
- else if (!object->input_file.empty() && !volume->name.empty())
+ else if (!object->input_file.empty() && volume->is_model_part() && !volume->name.empty())
missing_input_paths.push_back(volume->name);
}