Skip to content

Commit

Permalink
πŸ› Fix 3-point leveling position
Browse files Browse the repository at this point in the history
See MarlinFirmware#22457. Fixes a G29 regression from MarlinFirmware#19112.
  • Loading branch information
thinkyhead authored and mh-dm committed May 15, 2022
1 parent c8872a8 commit 79919cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/bedlevel/abl/G29.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ G29_TYPE GcodeSuite::G29() {

// Probe at 3 arbitrary points
if (abl.abl_probe_index < abl.abl_points) {
abl.probePos = points[abl.abl_probe_index];
abl.probePos = xy_pos_t(points[abl.abl_probe_index]);
_manual_goto_xy(abl.probePos);
// Disable software endstops to allow manual adjustment
// If G29 is not completed, they will not be re-enabled
Expand Down

0 comments on commit 79919cb

Please sign in to comment.