mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 04:36:10 +08:00
typos & cleaning
This commit is contained in:
parent
5d92ab481f
commit
866bb8b811
@ -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");
|
||||||
|
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user