From 94898ac212876a44acc025ef6ffaa463c69b0136 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Thu, 10 Mar 2022 12:11:51 +0100 Subject: [PATCH] Don't make min single wall line width the same as the Min Odd Wall Line Width The formula in that setting means that this setting was always the same as the Min Odd Wall Line Width, but that is not really a natural value for this setting. The absolute minimum for a line is generally known to be 75% of the nozzle size, so we use that instead. --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index d622ab8e1d..9cf26968f9 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1304,7 +1304,7 @@ "label": "Minimum Wall Line Width", "description": "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself.", "unit": "mm", - "value": "wall_line_width_0 * (100.0 + wall_split_middle_threshold)/200", + "value": "machine_nozzle_size * .75", "default_value": 0.2, "minimum_value": "0.001", "minimum_value_warning": "min_feature_size",