浏览代码

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

Leo 4 年前
父节点
当前提交
c9718504c5
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      Marlin/src/gcode/bedlevel/abl/G29.cpp

+ 2
- 2
Marlin/src/gcode/bedlevel/abl/G29.cpp 查看文件

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

正在加载...
取消
保存