increase the line width limit to 5x the nozzle diameter #1745

This commit is contained in:
SoftFever 2023-08-10 23:00:59 +08:00
parent 3e393df9df
commit 24bf61af73

View file

@ -1140,7 +1140,7 @@ StringObjectException Print::validate(StringObjectException *warning, Polygons*
} else if (extrusion_width_min <= layer_height) {
err_msg = L("Too small line width");
return false;
} else if (extrusion_width_max >= max_nozzle_diameter * 2.5) {
} else if (extrusion_width_max > max_nozzle_diameter * 5) {
err_msg = L("Too large line width");
return false;
}