mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-17 02:36:40 +08:00
Reduce minimum value and default value for minimum line width
The previous minimum value was based on anecdotal experience about what the minimum width is that a printer can normally print. That's better as a default value and shouldn't be used as a minimum value. The minimum value should be based on what the technical or physical limitations are. There are no real technical or physical limitations other than that you can't have 0-width lines. So the minimum is just-above-0. Contributes to issue CURA-7682.
This commit is contained in:
parent
0e87525d93
commit
106f3e9024
@ -1364,8 +1364,8 @@
|
||||
"label": "Minimum Wall Line Width",
|
||||
"description": "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself.",
|
||||
"unit": "mm",
|
||||
"value": "wall_line_width_0",
|
||||
"minimum_value": "0.5 * machine_nozzle_size",
|
||||
"value": "wall_line_width_0 / 2",
|
||||
"minimum_value": "0.001",
|
||||
"minimum_value_warning": "min_feature_size",
|
||||
"maximum_value_warning": "wall_line_width_0",
|
||||
"type": "float",
|
||||
|
Loading…
x
Reference in New Issue
Block a user