Browse Source

Remove extra G29 V newlines (#20955)

qwewer0 4 years ago
parent
commit
c91a91008c
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

+ 1
- 1
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp View File

@@ -742,7 +742,7 @@
742 742
         if (do_ubl_mesh_map) display_map(g29_map_type);
743 743
 
744 744
         const int point_num = (GRID_MAX_POINTS) - count + 1;
745
-        SERIAL_ECHOLNPAIR("\nProbing mesh point ", point_num, "/", int(GRID_MAX_POINTS), ".\n");
745
+        SERIAL_ECHOLNPAIR("Probing mesh point ", point_num, "/", int(GRID_MAX_POINTS), ".");
746 746
         TERN_(HAS_DISPLAY, ui.status_printf_P(0, PSTR(S_FMT " %i/%i"), GET_TEXT(MSG_PROBING_MESH), point_num, int(GRID_MAX_POINTS)));
747 747
 
748 748
         #if HAS_LCD_MENU

Loading…
Cancel
Save