Skip to content
Snippets Groups Projects
Commit c61c0a9a authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Fix status message missing "blink"

parent 06213155
Branches
Tags
No related merge requests found
......@@ -408,7 +408,7 @@ FORCE_INLINE void _draw_axis_label(const AxisEnum axis, const char* const pstr,
}
}
inline void lcd_implementation_status_message() {
inline void lcd_implementation_status_message(const bool blink) {
#if ENABLED(STATUS_MESSAGE_SCROLLING)
static bool last_blink = false;
const uint8_t slen = lcd_strlen(lcd_status_message);
......@@ -693,7 +693,7 @@ static void lcd_implementation_status_screen() {
#if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
if (PENDING(millis(), previous_lcd_status_ms + 5000UL)) { //Display both Status message line and Filament display on the last line
lcd_implementation_status_message();
lcd_implementation_status_message(blink);
}
else {
lcd_printPGM(PSTR(LCD_STR_FILAM_DIA));
......@@ -705,7 +705,7 @@ static void lcd_implementation_status_screen() {
u8g.print('%');
}
#else
lcd_implementation_status_message();
lcd_implementation_status_message(blink);
#endif
}
}
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment