Limit automatic extrusion width for support material interface as well
This commit is contained in:
parent
09fd5b4af4
commit
c3d401fb41
@ -90,7 +90,7 @@ Flow::_auto_width(FlowRole role, float nozzle_diameter, float height) {
|
|||||||
|
|
||||||
float min = nozzle_diameter * 1.05;
|
float min = nozzle_diameter * 1.05;
|
||||||
float max = -1;
|
float max = -1;
|
||||||
if (role == frExternalPerimeter || role == frSupportMaterial) {
|
if (role == frExternalPerimeter || role == frSupportMaterial || role == frSupportMaterialInterface) {
|
||||||
min = max = nozzle_diameter;
|
min = max = nozzle_diameter;
|
||||||
} else if (role != frInfill) {
|
} else if (role != frInfill) {
|
||||||
// do not limit width for sparse infill so that we use full native flow for it
|
// do not limit width for sparse infill so that we use full native flow for it
|
||||||
|
Loading…
Reference in New Issue
Block a user