Update old-style axis indexes

This commit is contained in:
Scott Lahteine
2021-04-12 19:34:31 -05:00
parent 1e357b3c74
commit 4a1d2d816c
4 changed files with 11 additions and 11 deletions

View File

@ -846,9 +846,9 @@ inline void fast_line_to_current(const AxisEnum fr_axis) { _line_to_current(fr_a
// Cutting recover
unscaled_e_move(toolchange_settings.extra_resume + TOOLCHANGE_FS_WIPE_RETRACT, MMM_TO_MMS(toolchange_settings.unretract_speed));
planner.synchronize();
// Resume at the old E position
current_position.e = destination.e;
sync_plan_position_e(); // Resume at the old E position
sync_plan_position_e();
}
}