浏览代码

🐛 Fix 3-point leveling position

See #22457. Fixes a G29 regression from #19112.
Scott Lahteine 3 年前
父节点
当前提交
46dc8e916f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/gcode/bedlevel/abl/G29.cpp

+ 1
- 1
Marlin/src/gcode/bedlevel/abl/G29.cpp 查看文件

@@ -568,7 +568,7 @@ G29_TYPE GcodeSuite::G29() {
568 568
 
569 569
       // Probe at 3 arbitrary points
570 570
       if (abl.abl_probe_index < abl.abl_points) {
571
-        abl.probePos = points[abl.abl_probe_index];
571
+        abl.probePos = xy_pos_t(points[abl.abl_probe_index]);
572 572
         _manual_goto_xy(abl.probePos);
573 573
         // Disable software endstops to allow manual adjustment
574 574
         // If G29 is not completed, they will not be re-enabled

正在加载...
取消
保存