From 8098c208601327b9ecd4bc0b2b0f700d0ad2dcd1 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Tue, 5 Apr 2022 14:00:42 +0200 Subject: [PATCH] disable wall_transition_filter_distance We don't want to filter based on the length of the filtered region, but based on the induced extra line width variation. This diables the setting for the frontend, but doesn't fully remove it yet. TODO --- 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 df0089c033..efbd8db67c 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1144,8 +1144,8 @@ "description": "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance.", "type": "float", "unit": "mm", - "default_value": 1.4, - "value": "4 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", + "enabled": false, + "default_value": 100, "minimum_value": "wall_transition_length", "minimum_value_warning": "math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", "maximum_value_warning": "10 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x"