Update fdmprinter.def.json

Set global Top and Bottom Layer values to match previous Ultimaker defaults.
This commit is contained in:
Asterchades 2024-11-28 16:08:37 +10:00 committed by GitHub
parent 428ea3a60a
commit eec792db0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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