Browse Source

Print a space after scrolling status

pull/1/head
Scott Lahteine 6 years ago
parent
commit
64389acdf1
  1. 1
      Marlin/src/lcd/dogm/status_screen_DOGM.cpp

1
Marlin/src/lcd/dogm/status_screen_DOGM.cpp

@ -559,6 +559,7 @@ void MarlinUI::draw_status_message(const bool blink) {
if (--chars) { if (--chars) {
// Print a second copy of the message // Print a second copy of the message
lcd_put_u8str_max(status_message, LCD_PIXEL_WIDTH - (rlen + 2) * (MENU_FONT_WIDTH)); lcd_put_u8str_max(status_message, LCD_PIXEL_WIDTH - (rlen + 2) * (MENU_FONT_WIDTH));
lcd_put_wchar(' ');
} }
} }
} }

Loading…
Cancel
Save