summaryrefslogtreecommitdiff
path: root/apps/menus
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus')
-rw-r--r--apps/menus/eq_menu.c1
-rw-r--r--apps/menus/main_menu.c5
-rw-r--r--apps/menus/recording_menu.c1
3 files changed, 1 insertions, 6 deletions
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c
index 58d86782b0..3248f10f0e 100644
--- a/apps/menus/eq_menu.c
+++ b/apps/menus/eq_menu.c
@@ -566,7 +566,6 @@ bool eq_menu_graphical(void)
566 } 566 }
567 } 567 }
568 568
569 action_signalscreenchange();
570 /* Reset screen settings */ 569 /* Reset screen settings */
571 FOR_NB_SCREENS(i) { 570 FOR_NB_SCREENS(i) {
572 screens[i].setfont(FONT_UI); 571 screens[i].setfont(FONT_UI);
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index 061c5c215e..7891a5c8a8 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -119,10 +119,8 @@ static bool show_credits(void)
119 if (plugin_load(PLUGIN_DIR "/credits.rock",NULL) != PLUGIN_OK) 119 if (plugin_load(PLUGIN_DIR "/credits.rock",NULL) != PLUGIN_OK)
120 { 120 {
121 /* show the rockbox logo and version untill a button is pressed */ 121 /* show the rockbox logo and version untill a button is pressed */
122 action_signalscreenchange();
123 show_logo(); 122 show_logo();
124 get_action(CONTEXT_STD, TIMEOUT_BLOCK); 123 get_action(CONTEXT_STD, TIMEOUT_BLOCK);
125 action_signalscreenchange();
126 } 124 }
127 return false; 125 return false;
128} 126}
@@ -178,7 +176,7 @@ static bool show_info(void)
178#endif 176#endif
179 177
180 if (talk_menus_enabled()) 178 if (talk_menus_enabled())
181 { 179 {
182 /* say whatever is reasonable, no real connection to the screen */ 180 /* say whatever is reasonable, no real connection to the screen */
183 bool enqueue = false; /* enqueue all but the first */ 181 bool enqueue = false; /* enqueue all but the first */
184 if (battery_level() >= 0) 182 if (battery_level() >= 0)
@@ -359,7 +357,6 @@ static bool show_info(void)
359 break; 357 break;
360 } 358 }
361 } 359 }
362 action_signalscreenchange();
363 return false; 360 return false;
364} 361}
365MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_INFO_MENU), 362MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_INFO_MENU),
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c
index 7c6d91e61d..3fdaa02f3d 100644
--- a/apps/menus/recording_menu.c
+++ b/apps/menus/recording_menu.c
@@ -791,7 +791,6 @@ bool rectrigger(void)
791 screens[i].setfont(FONT_UI); 791 screens[i].setfont(FONT_UI);
792 screens[i].setmargins(old_x_margin[i], old_y_margin[i]); 792 screens[i].setmargins(old_x_margin[i], old_y_margin[i]);
793 } 793 }
794 action_signalscreenchange();
795 return retval; 794 return retval;
796} 795}
797 796