Skip to content

Commit

Permalink
Prevent extrusion on M600 un-park (MarlinFirmware#21670)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebazzz authored Apr 24, 2021
1 parent 5dfe28d commit 8b5e742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/feature/pause.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ void resume_print(const_float_t slow_load_length/*=0*/, const_float_t fast_load_

if (!axes_should_home()) {
// Move XY back to saved position
destination.set(resume_position.x, resume_position.y, current_position.z);
destination.set(resume_position.x, resume_position.y, current_position.z, current_position.e);
prepare_internal_move_to_destination(NOZZLE_PARK_XY_FEEDRATE);

// Move Z back to saved position
Expand Down

0 comments on commit 8b5e742

Please sign in to comment.