Default to having 1 skin edge support layer when infill density >= 50.

This commit is contained in:
Mark Burton 2019-03-11 11:05:20 +00:00
parent bc3605dc58
commit bc924afb64

View File

@ -2041,7 +2041,7 @@
"minimum_value": "0",
"maximum_value": "machine_height",
"type": "float",
"value": "resolveOrValue('infill_sparse_thickness') * 4 if infill_sparse_density < 50 else 0",
"value": "resolveOrValue('infill_sparse_thickness') * (4 if infill_sparse_density < 50 else 1)",
"limit_to_extruder": "infill_extruder_nr",
"enabled": "infill_sparse_density > 0",
"settable_per_mesh": true,