Merge pull request #11589 from Ultimaker/spiralize_bottom_fix

disable 100% infill bottom layers trick for spiralize
This commit is contained in:
Jaime van Kessel 2022-03-23 16:22:48 +01:00 committed by GitHub
commit 049d8c0d35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1557,7 +1557,7 @@
"default_value": 6,
"maximum_value": "999999",
"type": "int",
"value": "999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))",
"value": "999999 if infill_sparse_density == 100 and not magic_spiralize else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))",
"limit_to_extruder": "top_bottom_extruder_nr",
"settable_per_mesh": true
},