Browse Source

Prevent extrusion on M600 un-park (#21670)

Fixes #21669
Sebastiaan Dammann 3 years ago
parent
commit
8b5e7429d7
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/pause.cpp

+ 1
- 1
Marlin/src/feature/pause.cpp View File

@@ -602,7 +602,7 @@ void resume_print(const_float_t slow_load_length/*=0*/, const_float_t fast_load_
602 602
 
603 603
   if (!axes_should_home()) {
604 604
     // Move XY back to saved position
605
-    destination.set(resume_position.x, resume_position.y, current_position.z);
605
+    destination.set(resume_position.x, resume_position.y, current_position.z, current_position.e);
606 606
     prepare_internal_move_to_destination(NOZZLE_PARK_XY_FEEDRATE);
607 607
 
608 608
     // Move Z back to saved position

Loading…
Cancel
Save