From f9014feb33611d150ddebf75a240d7d963ff1595 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Wed, 7 Aug 2019 11:03:00 +0200 Subject: [PATCH] Change the default values of the retracted position It was a mistake not to change it when we decided to use negative values for those fields. --- 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 bf65177393..232f407f9f 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -2250,7 +2250,7 @@ "description": "How far the material needs to be retracted before it stops oozing.", "type": "float", "unit": "mm", - "default_value": 4, + "default_value": -4, "enabled": false, "minimum_value_warning": "-retraction_amount", "maximum_value_warning": "0", @@ -2276,7 +2276,7 @@ "description": "How far the filament can be stretched before it breaks, while heated.", "type": "float", "unit": "mm", - "default_value": 16, + "default_value": -16, "enabled": false, "minimum_value_warning": "-retraction_amount * 4", "maximum_value_warning": "0", @@ -2302,7 +2302,7 @@ "description": "How far to retract the filament in order to break it cleanly.", "type": "float", "unit": "mm", - "default_value": 50, + "default_value": -50, "enabled": false, "minimum_value_warning": "-100", "maximum_value_warning": "0",