From 4edc258df05391d1e821a2551ddb26b45e31dd85 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Wed, 2 Dec 2015 15:26:06 +0100 Subject: [PATCH] "min_value" should be a string, fixes CURA-521 --- 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 7b54683e78..c86af023c7 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -702,7 +702,7 @@ "description": "This setting limits the number of retractions occurring within the Minimum Extrusion Distance Window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues.", "default": 4, "type": "int", - "min_value": 1, + "min_value": "1", "visible": false, "inherit": false, "enabled": "retraction_enable" @@ -713,7 +713,7 @@ "unit": "mm", "type": "float", "default": 4.5, - "min_value": 0.0, + "min_value": "0.0", "visible": false, "inherit_function": "retraction_amount", "enabled": "retraction_enable"