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:
Ghostkeeper 2019-10-21 01:48:01 +02:00
parent 4a5673746c
commit 8cd583ad33
No known key found for this signature in database
GPG Key ID: B47E36CF62F1D06E

View File

@ -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
}, },