Browse Source

Fix leveling "Point n of 3" message (#18639)

Leo 5 years ago
parent
commit
c9718504c5
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/gcode/bedlevel/abl/G29.cpp

+ 2
- 2
Marlin/src/gcode/bedlevel/abl/G29.cpp View File

685
       // Probe at 3 arbitrary points
685
       // Probe at 3 arbitrary points
686
 
686
 
687
       LOOP_L_N(i, 3) {
687
       LOOP_L_N(i, 3) {
688
-        if (verbose_level) SERIAL_ECHOLNPAIR("Probing point ", int(i), "/3.");
689
-        TERN_(HAS_DISPLAY, ui.status_printf_P(0, PSTR(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_MESH), int(i)));
688
+        if (verbose_level) SERIAL_ECHOLNPAIR("Probing point ", int(i + 1), "/3.");
689
+        TERN_(HAS_DISPLAY, ui.status_printf_P(0, PSTR(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_MESH), int(i + 1)));
690
 
690
 
691
         // Retain the last probe position
691
         // Retain the last probe position
692
         probePos = points[i];
692
         probePos = points[i];

Loading…
Cancel
Save