From cbe3cf778a3cdce982b51fc76438528adb7328aa Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 12 Nov 2021 16:48:08 +0100 Subject: [PATCH] Change distribution count to be the maximum diameter of distribution Instead of the minimum. So previously a value of 2 would make it spread the error over 2 walls for an even number, or 3 for an odd. Now it makes it spread the error over 2 walls for an even number or 1 for an odd. This means that the minimum allowed value becomes 2, because for an even wall count it needs to place the error somewhere. Done as a 5 minute fix. --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 7dc8d41ed1..3233c8eff1 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1146,8 +1146,8 @@ "label": "Wall Distribution Count", "description": "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width.", "type": "int", - "default_value": 2, - "minimum_value": "1", + "default_value": 3, + "minimum_value": "2", "enabled": "beading_strategy_type == 'inward_distributed'" }, "wall_transition_angle":