From bf6015e312c688a44708b91efe9f6c2abc0c4aaa Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Thu, 7 Jan 2016 12:07:12 +0100 Subject: [PATCH] lil fix: min value for brim width (CURA-435) --- resources/machines/fdmprinter.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index b27577335a..49ef7bb0cc 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -1388,6 +1388,8 @@ "type": "float", "unit": "mm", "default": 5.0, + "min_value": "0.0", + "max_value_warning": "100.0", "enabled": "adhesion_type == \"brim\"", "children": { "brim_line_count": { @@ -1395,6 +1397,7 @@ "description": "The number of lines used for a brim. More lines means a larger brim which sticks better to the build plate, but this also makes your effective print area smaller.", "type": "int", "default": 13, + "min_value": "0", "inherit_function": "math.ceil(parent_value / skirt_line_width)", "enabled": "adhesion_type == \"brim\"" }