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:
Ghostkeeper 2018-03-20 15:27:04 +01:00
parent f15eb4be2d
commit ae1ea9fc48
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -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" },