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:
authorYuSanka <yusanka@gmail.com>2020-02-14 16:44:17 +0300
committerYuSanka <yusanka@gmail.com>2020-02-14 16:44:17 +0300
commit23732864ab06ccc5684d05558975c6a0937eb0ea (patch)
tree886c7b8b35d399fe572ba40b6ca866661427f467 /src/slic3r/GUI/Plater.cpp
parent3f27802c0ac8e8e8bba6cae090db28244509fa55 (diff)
Fixed bug related to possibility of load several files as a multi-part object
Steps to repro: - set MMU printer - set SL1 printer - add two or more objects - select yes in "Multi-part object detected" dialog
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 034aecae0..5031c2ebe 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -2238,7 +2238,7 @@ std::vector<size_t> Plater::priv::load_files(const std::vector<fs::path>& input_
auto *nozzle_dmrs = config->opt<ConfigOptionFloats>("nozzle_diameter");
- bool one_by_one = input_files.size() == 1 || nozzle_dmrs->values.size() <= 1;
+ bool one_by_one = input_files.size() == 1 || printer_technology == ptSLA || nozzle_dmrs->values.size() <= 1;
if (! one_by_one) {
for (const auto &path : input_files) {
if (std::regex_match(path.string(), pattern_bundle)) {