Przeglądaj źródła

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

Leo 4 lat temu
rodzic
commit
c9718504c5
No account linked to committer's email address
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2
    2
      Marlin/src/gcode/bedlevel/abl/G29.cpp

+ 2
- 2
Marlin/src/gcode/bedlevel/abl/G29.cpp Wyświetl plik

@@ -685,8 +685,8 @@ G29_TYPE GcodeSuite::G29() {
685 685
       // Probe at 3 arbitrary points
686 686
 
687 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 691
         // Retain the last probe position
692 692
         probePos = points[i];

Ładowanie…
Anuluj
Zapisz