Wipe Improvements: Removed debug code, removed retract before wipe and made the respect retract speed an option.

This commit is contained in:
igiannakas 2023-12-12 15:54:24 +00:00
parent 273a3bc989
commit ba515ffb62
5 changed files with 26 additions and 18 deletions

View file

@ -3864,6 +3864,7 @@ if (is_marlin_flavor)
optgroup->append_single_option_line("wipe", "", extruder_idx);
optgroup->append_single_option_line("wipe_distance", "", extruder_idx);
optgroup->append_single_option_line("retract_before_wipe", "", extruder_idx);
optgroup->append_single_option_line("respect_retraction_speed_when_wiping", "", extruder_idx);
optgroup = page->new_optgroup(L("Lift Z Enforcement"), L"param_retraction", -1, true);
optgroup->append_single_option_line("retract_lift_above", "", extruder_idx);
@ -4109,6 +4110,7 @@ void TabPrinter::toggle_options()
}
// BBS
toggle_option("wipe_distance", wipe, i);
toggle_option("respect_retraction_speed_when_wiping", wipe, i);
toggle_option("retract_length_toolchange", have_multiple_extruders, i);