mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-23 23:14:31 +08:00
Debug gui parameters (from merge & first layer XY bug)
This commit is contained in:
parent
9c051e0e9d
commit
ee9ce18190
@ -268,7 +268,7 @@ PrintConfigDef::PrintConfigDef()
|
||||
"to compensate for the 1st layer squish aka an Elephant Foot effect. (must be negative = inwards)");
|
||||
def->sidetext = L("mm");
|
||||
def->cli = "elefant-foot-compensation=f";
|
||||
def->min = 0;
|
||||
def->max = 0;
|
||||
def->default_value = new ConfigOptionFloat(0);
|
||||
|
||||
def = this->add("end_gcode", coString);
|
||||
@ -910,10 +910,10 @@ PrintConfigDef::PrintConfigDef()
|
||||
def->default_value = new ConfigOptionInt(0);
|
||||
|
||||
def = this->add("infill_dense_angle", coFloat);
|
||||
def->label = L("angle");
|
||||
def->label = L("Angle");
|
||||
def->category = L("Infill");
|
||||
def->tooltip = L("Set the Angle of dense infill.");
|
||||
def->sidetext = L("layers");
|
||||
def->sidetext = L("°");
|
||||
def->cli = "infill-dense-angle=i";
|
||||
def->min = 0;
|
||||
def->default_value = new ConfigOptionFloat(0);
|
||||
@ -921,7 +921,7 @@ PrintConfigDef::PrintConfigDef()
|
||||
def = this->add("infill_dense_density", coPercent);
|
||||
def->gui_type = "f_enum_open";
|
||||
def->gui_flags = "show_value";
|
||||
def->label = L("Dense fill density");
|
||||
def->label = L("Density");
|
||||
def->category = L("Infill");
|
||||
def->tooltip = L("Density of the dense internal infill, expressed in the range 0% - 100%.");
|
||||
def->sidetext = L("%");
|
||||
@ -957,7 +957,7 @@ PrintConfigDef::PrintConfigDef()
|
||||
def->default_value = new ConfigOptionPercent(42);
|
||||
|
||||
def = this->add("infill_dense_pattern", coEnum);
|
||||
def->label = L("pattern");
|
||||
def->label = L("Pattern");
|
||||
def->category = L("Sparse fill pattern");
|
||||
def->tooltip = L("Fill pattern for denser-density sparse infill.");
|
||||
def->cli = "dense-fill-pattern=s";
|
||||
|
@ -849,7 +849,8 @@ void TabPrint::build()
|
||||
line.append_option(optgroup->get_option("fill_angle"));
|
||||
line.append_option(optgroup->get_option("bridge_angle"));
|
||||
optgroup->append_line(line);
|
||||
optgroup->append_single_option_line("external_infill_margin");
|
||||
line = { _(L("Anchor solid infill by X mm")), "" };
|
||||
line.append_option(optgroup->get_option("external_infill_margin"));
|
||||
line.append_option(optgroup->get_option("bridged_infill_margin"));
|
||||
optgroup->append_line(line);
|
||||
optgroup->append_single_option_line("only_retract_when_crossing_perimeters");
|
||||
|
Loading…
x
Reference in New Issue
Block a user