mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
Set default infill density for tree support to 0% in profiles
In profiles that overwrite the support infill density, also keep it 0% for tree support. Except PVA profiles. Those are probably better off with their normal infill density. Fixes #5297.
This commit is contained in:
parent
e5d7387fed
commit
25bbc1e66e
42 changed files with 42 additions and 42 deletions
|
@ -44,7 +44,7 @@ support_top_distance = 0.15
|
|||
support_z_distance = 0.25
|
||||
support_bottom_distance = 0.15
|
||||
support_brim_width = 6
|
||||
support_infill_rate = 15
|
||||
support_infill_rate = =15 if support_enable else 0 if support_tree_enable else 15
|
||||
support_line_distance = 1.7
|
||||
support_line_width = 0.25
|
||||
support_initial_layer_line_distance = 2.7
|
||||
|
|
|
@ -44,7 +44,7 @@ support_top_distance = 0.15
|
|||
support_z_distance = 0.25
|
||||
support_bottom_distance = 0.15
|
||||
support_brim_width = 6
|
||||
support_infill_rate = 15
|
||||
support_infill_rate = =15 if support_enable else 0 if support_tree_enable else 15
|
||||
support_line_distance = 1.7
|
||||
support_line_width = 0.25
|
||||
support_initial_layer_line_distance = 2.7
|
||||
|
|
|
@ -44,7 +44,7 @@ support_top_distance = 0.15
|
|||
support_z_distance = 0.25
|
||||
support_bottom_distance = 0.15
|
||||
support_brim_width = 6
|
||||
support_infill_rate = 15
|
||||
support_infill_rate = =15 if support_enable else 0 if support_tree_enable else 15
|
||||
support_line_distance = 1.7
|
||||
support_line_width = 0.25
|
||||
support_initial_layer_line_distance = 2.7
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue