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 19:22:28 +0300
committerbubnikv <bubnikv@gmail.com>2017-01-11 19:22:28 +0300
commitf0cf7adf84c356f496eaf6c746e97a6f7090b39d (patch)
treedec5fc465449fc76b05c8c1833db4438f483d1da
parentc2ba5901e46ec7c6773c27453965ea6ddb5427ff (diff)
Bugfix of a new support - first layer thickness of the support.version_1.33.1
-rw-r--r--xs/src/libslic3r/SupportMaterial.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/SupportMaterial.cpp b/xs/src/libslic3r/SupportMaterial.cpp
index b99a50a9e..7d41b265f 100644
--- a/xs/src/libslic3r/SupportMaterial.cpp
+++ b/xs/src/libslic3r/SupportMaterial.cpp
@@ -988,7 +988,7 @@ PrintObjectSupportMaterial::MyLayersPtr PrintObjectSupportMaterial::raft_and_int
intermediate_layers.push_back(&layer_new);
continue;
}
- } else if (extr1z + step < this->first_layer_height()) {
+ } else if (extr1z + step > this->first_layer_height()) {
MyLayer &layer_new = layer_allocate(layer_storage, sltIntermediate);
layer_new.bottom_z = extr1z;
layer_new.print_z = extr1z = this->first_layer_height();