mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Fix a bug where the maximum line width limit is inconsistent across different checks.
Fixes #10188
This commit is contained in:
@@ -1307,7 +1307,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 * 5) {
|
||||
} else if (extrusion_width_max > max_nozzle_diameter * MAX_LINE_WIDTH_MULTIPLIER) {
|
||||
err_msg = L("Too large line width");
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user