Updated tooltip for "use_firmware_retraction" parameter (related to PR#11301)

+ fixed typo in "Edit Custom G-code" tooltip
This commit is contained in:
YuSanka 2023-09-15 10:30:04 +02:00
parent 79676fe4cc
commit 8e693c5a14
2 changed files with 3 additions and 3 deletions

View File

@ -3176,8 +3176,8 @@ void PrintConfigDef::init_fff_params()
def = this->add("use_firmware_retraction", coBool);
def->label = L("Use firmware retraction");
def->tooltip = L("This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin.");
def->tooltip = L("This setting uses G10 and G11 commands to have the firmware "
"handle the retraction. Note that this has to be supported by firmware.");
def->mode = comExpert;
def->set_default_value(new ConfigOptionBool(false));