Update Reduce infill retraction tooltip to include effect on Z-hop (#12184)

This commit is contained in:
Ioannis Giannakas
2026-02-05 15:10:42 +00:00
committed by GitHub
parent aa4eb9de13
commit 1a156e419c
21 changed files with 65 additions and 44 deletions

View File

@@ -4464,9 +4464,9 @@ void PrintConfigDef::init_fff_params()
def = this->add("reduce_infill_retraction", coBool);
def->label = L("Reduce infill retraction");
def->tooltip = L("Don't retract when the travel is in infill area absolutely. That means the oozing can't been seen. "
def->tooltip = L("Don't retract when the travel is entirely within an infill area. That means the oozing can't been seen. "
"This can reduce times of retraction for complex model and save printing time, but make slicing and "
"G-code generating slower.");
"G-code generating slower. Note that z-hop is also not performed in areas where retraction is skipped.");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));