mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Change minimum and maximum layer heights into a warning
Because it's possible to try this, but the print result will probably be terrible. This keeps it consistent with the rest of Cura's behaviour. Fixes #3406.
This commit is contained in:
parent
f15eb4be2d
commit
ae1ea9fc48
1 changed files with 6 additions and 1 deletions
|
@ -30,7 +30,12 @@
|
|||
"speed_infill": { "value": "speed_print" },
|
||||
"speed_topbottom": {"value": "speed_print / 2"},
|
||||
|
||||
"layer_height": { "minimum_value": "0.04375", "maximum_value": "machine_nozzle_size * 0.875", "maximum_value_warning": "machine_nozzle_size * 0.48125 + 0.0875", "default_value": 0.13125 },
|
||||
"layer_height":
|
||||
{
|
||||
"minimum_value_warning": "0.04375",
|
||||
"maximum_value_warning": "machine_nozzle_size * 0.48125 + 0.0875",
|
||||
"default_value": 0.13125
|
||||
},
|
||||
"line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" },
|
||||
|
||||
"material_print_temperature": { "minimum_value": "0" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue