From ae1ea9fc48707ea86ae93797861e6d4e91fe0364 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 20 Mar 2018 15:27:04 +0100 Subject: [PATCH] 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. --- resources/definitions/malyan_m200.def.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/definitions/malyan_m200.def.json b/resources/definitions/malyan_m200.def.json index a3f4f81ecf..ec3237a7e6 100644 --- a/resources/definitions/malyan_m200.def.json +++ b/resources/definitions/malyan_m200.def.json @@ -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" },