Skip to main content
Sign in
Snippets Groups Projects
Commit 64389acd authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Print a space after scrolling status

parent 7a361ad3
Branches
Tags
No related merge requests found
...@@ -559,6 +559,7 @@ void MarlinUI::draw_status_message(const bool blink) { ...@@ -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(' ');
} }
} }
} }
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment