Fix frame start for non-menu screens

This commit is contained in:
Alex Voinea 2023-09-30 12:46:53 +02:00
parent 8e25e1b164
commit 9dbbb12a13
2 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,6 @@ void menu_start(void)
menu_top = lcd_encoder; menu_top = lcd_encoder;
menu_line = menu_top; menu_line = menu_top;
menu_clicked = lcd_clicked(); // Consume click event menu_clicked = lcd_clicked(); // Consume click event
if (lcd_draw_update) lcd_frame_start();
} }
void menu_end(void) void menu_end(void)

View File

@ -7280,6 +7280,7 @@ void menu_lcd_lcdupdate_func(void)
{ {
if (lcd_draw_update) { if (lcd_draw_update) {
lcd_timeoutToStatus.start(); lcd_timeoutToStatus.start();
lcd_frame_start();
} }
(*menu_menu)(); (*menu_menu)();