Browse Source

🐛 Fix 3-point leveling position

See #22457. Fixes a G29 regression from #19112.
vanilla_fb_2.0.x
Scott Lahteine 3 years ago
parent
commit
12581bcc44
  1. 2
      Marlin/src/gcode/bedlevel/abl/G29.cpp

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

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

Loading…
Cancel
Save