summaryrefslogtreecommitdiff
path: root/apps/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menu.c')
-rw-r--r--apps/menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 1c6be6f58a..023f6fbbfb 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -167,7 +167,7 @@ static void menu_draw(int m)
167 LCD_HEIGHT - SCROLLBAR_Y, menus[m].itemcount, menus[m].top, 167 LCD_HEIGHT - SCROLLBAR_Y, menus[m].itemcount, menus[m].top,
168 menus[m].top + menu_lines, VERTICAL); 168 menus[m].top + menu_lines, VERTICAL);
169#endif 169#endif
170 status_draw(); 170 status_draw(true);
171 lcd_update(); 171 lcd_update();
172} 172}
173 173
@@ -332,7 +332,7 @@ int menu_show(int m)
332 return MENU_ATTACHED_USB; 332 return MENU_ATTACHED_USB;
333 } 333 }
334 334
335 status_draw(); 335 status_draw(false);
336 } 336 }
337 return MENU_SELECTED_EXIT; 337 return MENU_SELECTED_EXIT;
338} 338}