summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/status.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/status.c b/apps/status.c
index 7d941c30bc..a7bc21e78d 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -169,6 +169,11 @@ void status_draw(void)
169#ifdef HAVE_RTC 169#ifdef HAVE_RTC
170 statusbar_time(); 170 statusbar_time();
171#endif 171#endif
172#ifdef SIMULATOR
173 lcd_update();
174#else
175 lcd_update_rect(0,0,LCD_WIDTH,8);
176#endif
172 } 177 }
173#endif 178#endif
174} 179}