1
0
Fork 0
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:
Björn Stenberg 2003-04-02 08:20:51 +00:00
parent 9218481199
commit fad1713fee

View file

@ -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 };