From f298c29d5f92d4c67a075492e1eb1a5c17c2ded7 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 31 Jul 2017 13:40:10 +0200 Subject: [PATCH] Disallow retraction/prime speeds of 0 This would cause divisions by 0. --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 3f1de9e4fc..a4121ba2cc 100755 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1820,7 +1820,7 @@ "unit": "mm/s", "type": "float", "default_value": 25, - "minimum_value": "0", + "minimum_value": "0.0001", "minimum_value_warning": "1", "maximum_value": "machine_max_feedrate_e", "maximum_value_warning": "70", @@ -1836,7 +1836,7 @@ "unit": "mm/s", "type": "float", "default_value": 25, - "minimum_value": "0", + "minimum_value": "0.0001", "maximum_value": "machine_max_feedrate_e", "minimum_value_warning": "1", "maximum_value_warning": "70", @@ -1852,7 +1852,7 @@ "unit": "mm/s", "type": "float", "default_value": 25, - "minimum_value": "0", + "minimum_value": "0.0001", "maximum_value": "machine_max_feedrate_e", "minimum_value_warning": "1", "maximum_value_warning": "70",