mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Increase the maximum warning for speed_slowdown_layers
Also round the resolved value, because the result needs to be an integer. Contributes to issue CURA-3960.
This commit is contained in:
parent
d30c598977
commit
cb4e58c6f7
1 changed files with 2 additions and 2 deletions
|
@ -2046,9 +2046,9 @@
|
|||
"description": "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers.",
|
||||
"type": "int",
|
||||
"default_value": 2,
|
||||
"resolve": "sum(extruderValues('speed_slowdown_layers')) / len(extruderValues('speed_slowdown_layers'))",
|
||||
"resolve": "round(sum(extruderValues('speed_slowdown_layers')) / len(extruderValues('speed_slowdown_layers')))",
|
||||
"minimum_value": "0",
|
||||
"maximum_value_warning": "1.0 / resolveOrValue('layer_height')",
|
||||
"maximum_value_warning": "3.0 / resolveOrValue('layer_height')",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue