From b86a219315aa11b3ca6cc0c1ab68980b7c09d8b3 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Mon, 7 Dec 2015 18:05:00 +0100 Subject: [PATCH] JSON: fix: coasting min volume should be at least as high as coasting volume (CURA-528) --- resources/machines/fdmprinter.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index a0474ed0f7..bceac73d2c 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -924,10 +924,11 @@ }, "coasting_min_volume": { "label": "Minimal Volume Before Coasting", - "description": "The least volume an extrusion path should have to coast the full amount. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly.", + "description": "The least volume an extrusion path should have to coast the full amount. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume.", "unit": "mm³", "type": "float", "default": 0.8, + "min_value": "coasting_volume", "visible": false, "inherit": false, "enabled": "coasting_enable"