From 7ea02f9d983347186c98948dc46131c205334eda Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Thu, 14 Apr 2016 13:50:40 +0200 Subject: [PATCH] JSON fix: Infill Overlap mm didn't default to 0 when infill was too dense (CURA-786) --- resources/machines/fdmprinter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index f11d5d4955..9ce745e2b0 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -590,7 +590,7 @@ "default": 0.04, "min_value_warning": "-0.5 * machine_nozzle_size", "max_value_warning": "machine_nozzle_size", - "inherit_function": "infill_line_width * parent_value / 100", + "inherit_function": "infill_line_width * parent_value / 100 if infill_sparse_density < 95 else 0", "visible": false } }