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

Limit automatic extrusion width for support material interface as well

This commit is contained in:
Alessandro Ranellucci
2014-11-07 23:35:33 +01:00
parent 09fd5b4af4
commit c3d401fb41
+1 -1
View File
@@ -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