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:
authorNino van Hooff <ninovanhooff@gmail.com>2020-07-14 10:44:40 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-07-14 10:44:40 +0300
commit617b07061dcaa0d624fc7066f2f3f19004a55f50 (patch)
tree3d2614c8713cabdc6554b798f1dadcf822bba0d3 /resources/definitions/winbo_mini2.def.json
parentbc34c8dd0b298e74270f15d5b0f72151c96255f3 (diff)
Take support_enable into account when evaluating support_structure.
Unsure whether this is necessary, but we decided to do this to make the evaluation logically equivalent to the existing code currently in master. CURA-6711
Diffstat (limited to 'resources/definitions/winbo_mini2.def.json')
-rw-r--r--resources/definitions/winbo_mini2.def.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/definitions/winbo_mini2.def.json b/resources/definitions/winbo_mini2.def.json
index c34e90a980..a43948a49d 100644
--- a/resources/definitions/winbo_mini2.def.json
+++ b/resources/definitions/winbo_mini2.def.json
@@ -124,7 +124,7 @@
"support_bottom_height": { "value": "max((0.15 if(0.15%layer_height==0) else layer_height*int((0.15+layer_height)/layer_height)),layer_height)" },
"support_bottom_pattern": { "value": "'zigzag'" },
"support_connect_zigzags": { "value": "False" },
- "support_infill_rate": { "value": "8 if support_structure=='normal' else 0 if support_structure=='tree' else 8" },
+ "support_infill_rate": { "value": "8 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 8" },
"support_interface_density": { "value": "80" },
"support_interface_enable": { "value": "True" },
"support_interface_height": { "value": "0.5" },