mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-20 00:22:29 +00:00
🐛 LCD string followup (#22892)
This commit is contained in:
parent
bd6a1a2898
commit
13bb2393e1
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ static void _lcd_level_bed_corners_get_next_position() {
|
||||||
// Display # of good points found vs total needed
|
// Display # of good points found vs total needed
|
||||||
if (PAGE_CONTAINS(y - (MENU_FONT_HEIGHT), y)) {
|
if (PAGE_CONTAINS(y - (MENU_FONT_HEIGHT), y)) {
|
||||||
SETCURSOR(TERN(TFT_COLOR_UI, 2, 0), cy);
|
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));
|
IF_ENABLED(TFT_COLOR_UI, lcd_moveto(12, cy));
|
||||||
lcd_put_u8str(GOOD_POINTS_TO_STR(good_points));
|
lcd_put_u8str(GOOD_POINTS_TO_STR(good_points));
|
||||||
lcd_put_wchar('/');
|
lcd_put_wchar('/');
|
||||||
|
|
Loading…
Reference in a new issue