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:
Diffstat (limited to 'xs/src/libslic3r/Layer.cpp')
-rw-r--r--xs/src/libslic3r/Layer.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/xs/src/libslic3r/Layer.cpp b/xs/src/libslic3r/Layer.cpp
index 652bcdaa0..4b3ecb3f2 100644
--- a/xs/src/libslic3r/Layer.cpp
+++ b/xs/src/libslic3r/Layer.cpp
@@ -101,8 +101,9 @@ void Layer::make_perimeters()
&& config.gap_fill_speed == other_config.gap_fill_speed
&& config.overhangs == other_config.overhangs
&& config.serialize("perimeter_extrusion_width").compare(other_config.serialize("perimeter_extrusion_width")) == 0
- && config.thin_walls == other_config.thin_walls
- && config.external_perimeters_first == other_config.external_perimeters_first) {
+ && config.thin_walls == other_config.thin_walls
+ && config.external_perimeters_first == other_config.external_perimeters_first
+ && config.perimeter_loop == other_config.perimeter_loop) {
layerms.push_back(other_layerm);
done.insert(it - this->regions.begin());
}