Browse Source

Fix USE_BIG_EDIT_FONT bug (#14252)

thisiskeithb 6 years ago
parent
commit
662e7da8a4
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/dogm/ultralcd_DOGM.cpp

+ 1
- 1
Marlin/src/lcd/dogm/ultralcd_DOGM.cpp View File

@@ -418,7 +418,7 @@ void MarlinUI::clear_lcd() { } // Automatically cleared by Picture Loop
418 418
         onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline);
419 419
       }
420 420
       if (onpage) {
421
-        lcd_moveto((lcd_chr_fit - (vallen + 1)) * one_chr_width, baseline); // Right-justified, leaving padded by spaces
421
+        lcd_moveto(((lcd_chr_fit - 1) - (vallen + 1)) * one_chr_width, baseline); // Right-justified, leaving padded by spaces
422 422
         lcd_put_wchar(' '); // overwrite char if value gets shorter
423 423
         lcd_put_u8str(value);
424 424
       }

Loading…
Cancel
Save