From f0cf7adf84c356f496eaf6c746e97a6f7090b39d Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 11 Jan 2017 17:22:28 +0100 Subject: Bugfix of a new support - first layer thickness of the support. --- xs/src/libslic3r/SupportMaterial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- cgit v1.2.3