浏览代码

Prevent extrusion on M600 un-park (#21670)

Fixes #21669
Sebastiaan Dammann 3 年前
父节点
当前提交
8b5e7429d7
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/feature/pause.cpp

+ 1
- 1
Marlin/src/feature/pause.cpp 查看文件

@@ -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

正在加载...
取消
保存