typos & cleaning

This commit is contained in:
supermerill 2018-11-27 19:51:53 +01:00
parent 5d92ab481f
commit 866bb8b811
2 changed files with 3 additions and 3 deletions

View File

@ -937,7 +937,7 @@ PrintConfigDef::PrintConfigDef()
def->tooltip = L("Enable the creation of a support layer under the first solid layer. Allow to use lower infill ratio without compromizing the top quality." def->tooltip = L("Enable the creation of a support layer under the first solid layer. Allow to use lower infill ratio without compromizing the top quality."
" The dense infill is layed out with a 50% infill density."); " The dense infill is layed out with a 50% infill density.");
def->cli = "infill-dense!"; def->cli = "infill-dense!";
def->default_value = new ConfigOptionBool(1); def->default_value = new ConfigOptionBool(false);
def = this->add("infill_dense_algo", coEnum); def = this->add("infill_dense_algo", coEnum);
def->label = L("Algorithm"); def->label = L("Algorithm");
@ -1342,7 +1342,7 @@ PrintConfigDef::PrintConfigDef()
def->category = L("Layers and Perimeters"); def->category = L("Layers and Perimeters");
def->tooltip = L("Experimental option to remove perimeters where there are nothing under and a bridged infill should be better."); def->tooltip = L("Experimental option to remove perimeters where there are nothing under and a bridged infill should be better.");
def->cli = "no-perimeter-unsupported!"; def->cli = "no-perimeter-unsupported!";
def->default_value = new ConfigOptionBool(true); def->default_value = new ConfigOptionBool(false);
def = this->add("min_perimeter_unsupported", coInt); def = this->add("min_perimeter_unsupported", coInt);
def->label = L("Minimum perimeters"); def->label = L("Minimum perimeters");

View File

@ -819,7 +819,7 @@ void TabPrint::build()
optgroup->append_line(line); optgroup->append_line(line);
optgroup = page->new_optgroup(_(L("Advanced"))); optgroup = page->new_optgroup(_(L("Advanced")));
line = { _(L("Avoid unsupported perimeters")), "" }; line = { _(L("Seam options")), "" };
line.append_option(optgroup->get_option("seam_position")); line.append_option(optgroup->get_option("seam_position"));
line.append_option(optgroup->get_option("seam_travel")); line.append_option(optgroup->get_option("seam_travel"));
optgroup->append_line(line); optgroup->append_line(line);