mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 00:52:04 +00:00
increase the line width limit to 5x the nozzle diameter #1745
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user