mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
Limit automatic extrusion width for support material interface as well
This commit is contained in:
@@ -90,7 +90,7 @@ Flow::_auto_width(FlowRole role, float nozzle_diameter, float height) {
|
||||
|
||||
float min = nozzle_diameter * 1.05;
|
||||
float max = -1;
|
||||
if (role == frExternalPerimeter || role == frSupportMaterial) {
|
||||
if (role == frExternalPerimeter || role == frSupportMaterial || role == frSupportMaterialInterface) {
|
||||
min = max = nozzle_diameter;
|
||||
} else if (role != frInfill) {
|
||||
// do not limit width for sparse infill so that we use full native flow for it
|
||||
|
||||
Reference in New Issue
Block a user