mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-13 01:40:09 +00:00
🐛 Fix 3-point leveling position
See #22457. Fixes a G29 regression from #19112.
This commit is contained in:
parent
543d834a25
commit
46dc8e916f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue