mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-16 08:15:53 +08:00
fix ext_perimeter "vase mode" (height > 2xMin instead of <3)
This commit is contained in:
parent
7908eb508d
commit
a577ae7f87
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user