mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-07 05:54:03 -06:00
increase the line width limit to 5x the nozzle diameter #1745
This commit is contained in:
parent
3e393df9df
commit
24bf61af73
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue