x1000: Add missing LCD activation event on LCD enable

This event is needed to trigger a GUI redraw when the backlight
turns on.

Change-Id: Ib2300dfd1aaeacd84c6df8151072292409357212
This commit is contained in:
Aidan MacDonald 2022-12-11 09:30:34 +00:00
parent 6c52fa139c
commit d6744c92b1

View file

@ -428,7 +428,10 @@ void lcd_enable(bool en)
/* Handle turning the LCD back on */
if(!bit && en)
{
send_event(LCD_EVENT_ACTIVATION, NULL);
lcd_dma_start();
}
}
#endif