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:
parent
ea4a495046
commit
c21a1bf1df
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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");
|
||||||
|
|
Loading…
Reference in New Issue