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:
authorJaime van Kessel <nallath@gmail.com>2022-03-23 18:22:48 +0300
committerGitHub <noreply@github.com>2022-03-23 18:22:48 +0300
commit049d8c0d35906918ba22a9d3c7c57b8df9beb2d3 (patch)
tree170891d3932a355fec5ce20d6968c9492f668735
parent2cd5b2d46d58dd7a3c47d59e44ff38cfef53d6de (diff)
parent0e71b9c65362d4944c25a472908d837a62c8adbf (diff)
Merge pull request #11589 from Ultimaker/spiralize_bottom_fix
disable 100% infill bottom layers trick for spiralize
-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 95267c55e7..4fde50693f 100644
--- a/resources/definitions/fdmprinter.def.json
+++ b/resources/definitions/fdmprinter.def.json
@@ -1557,7 +1557,7 @@
"default_value": 6,
"maximum_value": "999999",
"type": "int",
- "value": "999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))",
+ "value": "999999 if infill_sparse_density == 100 and not magic_spiralize else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))",
"limit_to_extruder": "top_bottom_extruder_nr",
"settable_per_mesh": true
},