1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-13 08:24:27 +00:00

Bugfix of a new support - first layer thickness of the support.

This commit is contained in:
bubnikv
2017-01-11 17:22:28 +01:00
parent c2ba5901e4
commit f0cf7adf84
+1 -1
View File
@@ -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();