From fd5d029c4b94c169f625595213faa6b639fb484c Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Mon, 1 Feb 2016 11:53:19 +0100 Subject: [PATCH] infill overlap % ==> mm (CURA-786) --- resources/machines/fdmprinter.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index 8d9eb71d72..dda4a2b12e 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -547,12 +547,12 @@ "infill_overlap": { "label": "Infill Overlap", "description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.", - "unit": "%", + "unit": "mm", "type": "float", - "default": 10, - "min_value": "0", - "max_value_warning": "100", - "inherit_function": "10 if infill_sparse_density < 95 else 0", + "default": 0.04, + "min_value_warning": "0", + "max_value_warning": "machine_nozzle_size", + "inherit_function": "0.1 * line_width if infill_sparse_density < 95 else 0.0", "visible": false }, "infill_wipe_dist": {