ENH: change default tree_support_wall_count to 0

Now normal support also uses this option, so we can't default it to 1, otherwise normal supports will be too hard to remove.

jira: none
Change-Id: Ic5700af5c17e3a7b265c8915f28b0db35c6e06e6
(cherry picked from commit 6b84a9826da108b76569e686bd9def0b23ae29fd)
This commit is contained in:
Arthur 2023-11-27 09:56:52 +08:00 committed by Lane.Wei
parent ea4a495046
commit c21a1bf1df
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@
"support_object_xy_distance": "0.35", "support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2", "tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45", "tree_support_branch_angle": "45",
"tree_support_wall_count": "1", "tree_support_wall_count": "0",
"top_surface_pattern": "monotonicline", "top_surface_pattern": "monotonicline",
"top_surface_acceleration": "2000", "top_surface_acceleration": "2000",
"top_surface_speed": "200", "top_surface_speed": "200",

View File

@ -94,7 +94,7 @@
"travel_speed": "500", "travel_speed": "500",
"tree_support_branch_diameter": "2", "tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45", "tree_support_branch_angle": "45",
"tree_support_wall_count": "1", "tree_support_wall_count": "0",
"top_surface_pattern": "monotonicline", "top_surface_pattern": "monotonicline",
"top_surface_acceleration": "2000", "top_surface_acceleration": "2000",
"top_shell_layers": "3", "top_shell_layers": "3",

View File

@ -3278,7 +3278,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("This setting specify the count of walls around support"); def->tooltip = L("This setting specify the count of walls around support");
def->min = 0; def->min = 0;
def->mode = comAdvanced; def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInt(1)); def->set_default_value(new ConfigOptionInt(0));
def = this->add("tree_support_brim_width", coFloat); def = this->add("tree_support_brim_width", coFloat);
def->label = L("Tree support brim width"); def->label = L("Tree support brim width");