forked from len0rd/rockbox
Reordered items so Delete is never the default item.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3509 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9218481199
commit
fad1713fee
1 changed files with 2 additions and 2 deletions
|
@ -206,11 +206,11 @@ int onplay(char* file, int attr)
|
|||
if ((mpeg_status() & MPEG_STATUS_PLAY) && (attr & TREE_ATTR_MPA))
|
||||
menu[i++] = (struct menu_items) { str(LANG_QUEUE), queue_file };
|
||||
|
||||
menu[i++] = (struct menu_items) { str(LANG_RENAME), rename_file };
|
||||
|
||||
if (!(attr & ATTR_DIRECTORY))
|
||||
menu[i++] = (struct menu_items) { str(LANG_DELETE), delete_file };
|
||||
|
||||
menu[i++] = (struct menu_items) { str(LANG_RENAME), rename_file };
|
||||
|
||||
if (attr & TREE_ATTR_MPA)
|
||||
menu[i++] = (struct menu_items) { "VBRfix", vbr_fix };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue