Browse Source

🐛 LCD string followup (#22892)

vanilla_fb_2.0.x
Pyro-Fox 3 years ago
committed by Scott Lahteine
parent
commit
0018c94a79
  1. 2
      Marlin/src/lcd/menu/menu_bed_corners.cpp

2
Marlin/src/lcd/menu/menu_bed_corners.cpp

@ -179,7 +179,7 @@ static void _lcd_level_bed_corners_get_next_position() {
// Display # of good points found vs total needed
if (PAGE_CONTAINS(y - (MENU_FONT_HEIGHT), y)) {
SETCURSOR(TERN(TFT_COLOR_UI, 2, 0), cy);
lcd_put_u8str_(GET_TEXT_F(MSG_BED_TRAMMING_GOOD_POINTS));
lcd_put_u8str(GET_TEXT_F(MSG_BED_TRAMMING_GOOD_POINTS));
IF_ENABLED(TFT_COLOR_UI, lcd_moveto(12, cy));
lcd_put_u8str(GOOD_POINTS_TO_STR(good_points));
lcd_put_wchar('/');

Loading…
Cancel
Save