#275 typos & better wording in machine limits, thanks to @thierryzoller

This commit is contained in:
supermerill 2020-06-08 18:01:30 +02:00
parent 6ff5cd523c
commit 7f132c835d
2 changed files with 3 additions and 3 deletions

View File

@ -2088,7 +2088,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionString(""));
def = this->add("print_machine_envelope", coBool);
def->label = L("Print machine envelope in gcode");
def->label = L("Enable Limits");
def->category = OptionCategory::limits;
def->tooltip = L("Slic3r can add M201 M203 M202 M204 and M205 gcodes to pass the machine limits defined here to the firmware."
"Gcodes printed will depends of the firmware selected (please Report an issue if you found something wrong)."

View File

@ -2171,13 +2171,13 @@ PageShp TabPrinter::build_kinematics_page()
optgroup = page->new_optgroup(_(L("not-marlin/lerdge firmware compensation")));
optgroup->append_single_option_line("time_estimation_compensation");
}
optgroup = page->new_optgroup(_(L("Usage")));
optgroup = page->new_optgroup(_(L("Machine Limits")));
Line current_line = Line{ "", "" };
current_line.full_width = 1;
current_line.widget = [this](wxWindow* parent) {
ogStaticText* text;
auto result = description_line_widget(parent, &text);
text->SetText(_(L("This tab is used to calculate the time estimation. SuperSlicer can also write these limits in the beginning of the gcode file, if the setting below is checked. It's not used by anything else.")));
text->SetText(_(L("Description: The information below is used to calculate estimated printing time only, unless you enable the limits via the checkbox above.")));
return result;
};
optgroup->append_line(current_line);