mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Enable access to Shortcuts Menu from QuickScreen
Offers a quick way of switching to the Shortcuts Menu by pressing the 'context menu' button while QuickScreen is active (e.g. long press Select on iPods and some other players) Change-Id: I38292c7070cf093a81e1db688809b1f0d6a8764a
This commit is contained in:
parent
498988d34a
commit
193ebb5a36
15 changed files with 86 additions and 43 deletions
|
@ -455,14 +455,13 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
|
|||
#ifdef HAVE_QUICKSCREEN
|
||||
else if (action == ACTION_STD_QUICKSCREEN)
|
||||
{
|
||||
if (global_settings.shortcuts_replaces_qs)
|
||||
if (global_settings.shortcuts_replaces_qs ||
|
||||
quick_screen_quick(action) == QUICKSCREEN_GOTO_SHORTCUTS_MENU)
|
||||
{
|
||||
global_status.last_screen = GO_TO_SHORTCUTMENU;
|
||||
ret = quick_screen_quick(action);
|
||||
ret = do_shortcut_menu(NULL);
|
||||
done = true;
|
||||
}
|
||||
else
|
||||
quick_screen_quick(action);
|
||||
redraw_lists = true;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue