Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Kuipers <t.kuipers@ultimaker.com>2022-04-05 15:00:42 +0300
committerTim Kuipers <t.kuipers@ultimaker.com>2022-04-05 15:00:42 +0300
commit8098c208601327b9ecd4bc0b2b0f700d0ad2dcd1 (patch)
treea06f71132ca50f184352b46b7395c5195fc9527b /resources/definitions
parentde29eb7d53caa82b0e2567e79865c684caca7b6c (diff)
disable wall_transition_filter_distancefeat_transition_filter_limit
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
Diffstat (limited to 'resources/definitions')
-rw-r--r--resources/definitions/fdmprinter.def.json4
1 files 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"