Merge pull request #12898 from Ultimaker/CURA-9520_warning_line_density_children

Don't show warning color for children of support_infill_rate when using tree support
This commit is contained in:
Jelle Spijker 2022-08-01 12:37:59 +02:00 committed by GitHub
commit 405baea1ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -226,6 +226,12 @@
"support_infill_rate": { "support_infill_rate": {
"value": "0 if support_structure == 'tree' else 80 if gradual_support_infill_steps != 0 else 15" "value": "0 if support_structure == 'tree' else 80 if gradual_support_infill_steps != 0 else 15"
}, },
"support_line_distance": {
"minimum_value_warning": "0 if support_structure == 'tree' else support_line_width"
},
"support_initial_layer_line_distance": {
"minimum_value_warning": "0 if support_structure == 'tree' else support_line_width"
},
"gradual_support_infill_steps": { "gradual_support_infill_steps": {
"value": "2 if support_interface_enable else 0" "value": "2 if support_interface_enable else 0"
}, },