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-03-10 14:11:51 +0300
committerTim Kuipers <t.kuipers@ultimaker.com>2022-03-10 14:11:51 +0300
commit94898ac212876a44acc025ef6ffaa463c69b0136 (patch)
tree24969a5c24d062b33d014bdc38340bf06056b3bc /resources/definitions/fdmprinter.def.json
parent933f6941272b39a623d6491570bdcad197d42d4d (diff)
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.
Diffstat (limited to 'resources/definitions/fdmprinter.def.json')
-rw-r--r--resources/definitions/fdmprinter.def.json2
1 files changed, 1 insertions, 1 deletions
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",