From a577ae7f87a075f5c94dc1861e038356e319379d Mon Sep 17 00:00:00 2001 From: supermerill Date: Sun, 1 Mar 2020 19:01:39 +0100 Subject: [PATCH] fix ext_perimeter "vase mode" (height > 2xMin instead of <3) --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 74289e0f1..1af23b4a2 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -2916,7 +2916,7 @@ std::string GCode::extrude_loop(const ExtrusionLoop &original_loop, const std::s //but not for the first layer && this->m_layer->id() > 0 //exclude if min_layer_height * 2 > layer_height (increase from 2 to 3 because it's working but uses in-between) - && this->m_layer->height < EXTRUDER_CONFIG(min_layer_height) * 3 + && this->m_layer->height >= EXTRUDER_CONFIG(min_layer_height) * 2 ) { return extrude_loop_vase(original_loop, description, speed, lower_layer_edge_grid);