Skip to content

Commit 12581bc

Browse files
committed
🐛 Fix 3-point leveling position
See #22457. Fixes a G29 regression from #19112.
1 parent c7c56ac commit 12581bc

File tree

1 file changed

+1
-1
lines changed
  • Marlin/src/gcode/bedlevel/abl

1 file changed

+1
-1
lines changed

Marlin/src/gcode/bedlevel/abl/G29.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ G29_TYPE GcodeSuite::G29() {
568568

569569
// Probe at 3 arbitrary points
570570
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]);
572572
_manual_goto_xy(abl.probePos);
573573
// Disable software endstops to allow manual adjustment
574574
// If G29 is not completed, they will not be re-enabled

0 commit comments

Comments
 (0)