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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-01-11 20:05:03 +0300
committerbubnikv <bubnikv@gmail.com>2017-01-11 20:05:03 +0300
commit41fbec90630509bcc60435cfc5935a451ce7d3e6 (patch)
treebbe3a1f1ad09aa65398dd73b5276a78319c96d89
parentf0cf7adf84c356f496eaf6c746e97a6f7090b39d (diff)
Only synchronize intermediate layers if explicitely asked for.version_1.33.2
-rw-r--r--xs/src/libslic3r/SupportMaterial.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xs/src/libslic3r/SupportMaterial.cpp b/xs/src/libslic3r/SupportMaterial.cpp
index 7d41b265f..6f9810a33 100644
--- a/xs/src/libslic3r/SupportMaterial.cpp
+++ b/xs/src/libslic3r/SupportMaterial.cpp
@@ -947,7 +947,8 @@ PrintObjectSupportMaterial::MyLayersPtr PrintObjectSupportMaterial::raft_and_int
assert(extremes.front().z() > m_slicing_params.raft_interface_top_z && extremes.front().z() >= m_slicing_params.first_print_layer_height);
- bool synchronize = m_slicing_params.soluble_interface || this->synchronize_layers();
+// bool synchronize = m_slicing_params.soluble_interface || this->synchronize_layers();
+ bool synchronize = this->synchronize_layers();
// Generate intermediate layers.
// The first intermediate layer is the same as the 1st layer if there is no raft,