summaryrefslogtreecommitdiff
path: root/uisimulator/common
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2019-02-08 15:02:21 +0100
committerSebastian Leonhardt <sebastian.leonhardt@web.de>2019-02-08 15:06:16 +0100
commited269affb5e13c97f8281331fd42221419ea87df (patch)
tree4c03e6a39aa44a013e5d77b8947e6adf01e81221 /uisimulator/common
parent168e2424988c8142da8ebb29ae633440062d4b16 (diff)
downloadrockbox-ed269affb5e13c97f8281331fd42221419ea87df.tar.gz
rockbox-ed269affb5e13c97f8281331fd42221419ea87df.zip
Fix simulator/transflective: Display wasn't enabled on first keypress when backlight always off
Change-Id: Ibfa09e7bf839d4d12ef01e4812b5c47c9e32a3be
Diffstat (limited to 'uisimulator/common')
-rw-r--r--uisimulator/common/lcd-common.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/common/lcd-common.c b/uisimulator/common/lcd-common.c
index a03b9c711f..0c8e0dcad5 100644
--- a/uisimulator/common/lcd-common.c
+++ b/uisimulator/common/lcd-common.c
@@ -82,7 +82,7 @@ void lcd_remote_set_invert_display(bool invert)
82void lcd_sleep(void) 82void lcd_sleep(void)
83{ 83{
84 lcd_sleeping = true; 84 lcd_sleeping = true;
85#if defined(HAVE_TRANSFLECTIVE_LCD) && defined(HAVE_LCD_SLEEP) 85#ifdef HAVE_TRANSFLECTIVE_LCD
86 sim_backlight(0); /* completely blacken the screen */ 86 sim_backlight(0); /* completely blacken the screen */
87#endif 87#endif
88} 88}
@@ -93,6 +93,9 @@ void lcd_awake(void)
93 { 93 {
94 send_event(LCD_EVENT_ACTIVATION, NULL); 94 send_event(LCD_EVENT_ACTIVATION, NULL);
95 lcd_sleeping = false; 95 lcd_sleeping = false;
96#ifdef HAVE_TRANSFLECTIVE_LCD
97 sim_backlight(0); /* Make LCD visible again */
98#endif
96 } 99 }
97} 100}
98#endif 101#endif