Просмотр исходного кода

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
Tim Kuipers 2 лет назад
Родитель
Сommit
8098c20860
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      resources/definitions/fdmprinter.def.json

+ 2 - 2
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"