mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 17:18:58 +08:00
Add max values for int settings that didn't have them yet
Fixes #11514 See also c8b491e9e7915b3e5534dee0d4576d7a1bafca20
This commit is contained in:
parent
e66628e2da
commit
b1f2f6af75
@ -1142,6 +1142,7 @@
|
||||
"label": "Wall Distribution Count",
|
||||
"description": "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width.",
|
||||
"type": "int",
|
||||
"maximum_value": "999999",
|
||||
"default_value": 1,
|
||||
"minimum_value": "1",
|
||||
"enabled": "beading_strategy_type == 'inward_distributed'"
|
||||
@ -1433,6 +1434,7 @@
|
||||
"minimum_value": "0",
|
||||
"maximum_value_warning": "top_layers - 1",
|
||||
"type": "int",
|
||||
"maximum_value": "999999",
|
||||
"value": "0",
|
||||
"limit_to_extruder": "roofing_extruder_nr",
|
||||
"settable_per_mesh": true,
|
||||
@ -1486,6 +1488,7 @@
|
||||
"default_value": 8,
|
||||
"minimum_value": "0",
|
||||
"maximum_value_warning": "100",
|
||||
"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))",
|
||||
@ -1516,6 +1519,7 @@
|
||||
"minimum_value": "0",
|
||||
"minimum_value_warning": "2",
|
||||
"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))",
|
||||
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||
@ -1527,6 +1531,7 @@
|
||||
"description": "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number.",
|
||||
"minimum_value": "0",
|
||||
"minimum_value_warning": "2",
|
||||
"maximum_value": "999999",
|
||||
"default_value": 6,
|
||||
"type": "int",
|
||||
"value": "bottom_layers",
|
||||
@ -2048,6 +2053,7 @@
|
||||
"description": "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage.",
|
||||
"default_value": 1,
|
||||
"type": "int",
|
||||
"maximum_value": "999999",
|
||||
"minimum_value": "1",
|
||||
"maximum_value_warning": "infill_line_distance / infill_line_width",
|
||||
"enabled": "infill_sparse_density > 0 and infill_pattern != 'zigzag' and (gradual_infill_steps == 0 or not zig_zaggify_infill)",
|
||||
@ -2233,6 +2239,7 @@
|
||||
"minimum_value": "0",
|
||||
"maximum_value_warning": "10",
|
||||
"type": "int",
|
||||
"maximum_value": "999999",
|
||||
"value": "math.ceil(round(skin_edge_support_thickness / resolveOrValue('infill_sparse_thickness'), 4))",
|
||||
"limit_to_extruder": "infill_extruder_nr",
|
||||
"enabled": "infill_sparse_density > 0",
|
||||
@ -3257,6 +3264,7 @@
|
||||
"default_value": 2,
|
||||
"resolve": "round(sum(extruderValues('speed_slowdown_layers')) / len(extruderValues('speed_slowdown_layers')))",
|
||||
"minimum_value": "0",
|
||||
"maximum_value": "999999",
|
||||
"maximum_value_warning": "3.2 / resolveOrValue('layer_height')",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false
|
||||
|
Loading…
x
Reference in New Issue
Block a user