From 6c20d418636707f9cd922d20af69998c90e9d07d Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 28 Oct 2015 16:23:00 +0100 Subject: [PATCH] Make minimum layer height 1 micron Previously the minimum layer height was 0.1 micron. This was rounded down to 0 microns in the engine, and then a check would cause the engine to return an error. 1 micron is the minimum that the engine can handle. --- resources/machines/fdmprinter.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index a28a96fd34..1b34c71e0f 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -112,7 +112,7 @@ "unit": "mm", "type": "float", "default": 0.1, - "min_value": "0.0001", + "min_value": "0.001", "min_value_warning": "0.04", "max_value_warning": "0.32" }, @@ -122,7 +122,7 @@ "unit": "mm", "type": "float", "default": 0.3, - "min_value": "0.0001", + "min_value": "0.001", "min_value_warning": "0.04", "max_value_warning": "0.32", "visible": false