mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 02:35:53 +08:00
Only show conical support min width if angle is positive
If the angle is 0 or negative, this setting won't have any effect since the support cannot be made wider than it already is using this setting. It can only prevent it from becoming smaller, and it will only become smaller from a positive conical support angle. Discovered during work on the Settings Guide.
This commit is contained in:
parent
4a5673746c
commit
8cd583ad33
@ -6607,7 +6607,7 @@
|
|||||||
"minimum_value_warning": "machine_nozzle_size * 3",
|
"minimum_value_warning": "machine_nozzle_size * 3",
|
||||||
"maximum_value_warning": "100.0",
|
"maximum_value_warning": "100.0",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"enabled": "support_conical_enabled and support_enable",
|
"enabled": "support_conical_enabled and support_enable and support_conical_angle > 0",
|
||||||
"limit_to_extruder": "support_infill_extruder_nr",
|
"limit_to_extruder": "support_infill_extruder_nr",
|
||||||
"settable_per_mesh": true
|
"settable_per_mesh": true
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user