summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-30 06:24:38 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-30 06:24:38 +0000
commitc589150d5897953fc5cbd371cf1cbcc763723a56 (patch)
treed1f9567bd5c5a59fe183e82096e5f94163339604 /apps/onplay.c
parent022299ee6c1271f12b14539cf7e000d38048a63a (diff)
downloadrockbox-c589150d5897953fc5cbd371cf1cbcc763723a56.tar.gz
rockbox-c589150d5897953fc5cbd371cf1cbcc763723a56.zip
Moved the Open With option down in the ON+Play menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4976 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 3ea08fd9e5..5ef595a774 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -409,13 +409,6 @@ int onplay(char* file, int attr)
409 selected_file = file; 409 selected_file = file;
410 selected_file_attr = attr; 410 selected_file_attr = attr;
411 411
412 if (!(attr & ATTR_DIRECTORY))
413 {
414 items[i].desc = ID2P(LANG_ONPLAY_OPEN_WITH);
415 items[i].function = list_viewers;
416 i++;
417 }
418
419 if (((attr & TREE_ATTR_MASK) == TREE_ATTR_MPA) || 412 if (((attr & TREE_ATTR_MASK) == TREE_ATTR_MPA) ||
420 (attr & ATTR_DIRECTORY) || 413 (attr & ATTR_DIRECTORY) ||
421 ((attr & TREE_ATTR_MASK) == TREE_ATTR_M3U)) 414 ((attr & TREE_ATTR_MASK) == TREE_ATTR_M3U))
@@ -441,6 +434,13 @@ int onplay(char* file, int attr)
441 items[i].function = delete_dir; 434 items[i].function = delete_dir;
442 i++; 435 i++;
443 } 436 }
437
438 if (!(attr & ATTR_DIRECTORY))
439 {
440 items[i].desc = ID2P(LANG_ONPLAY_OPEN_WITH);
441 items[i].function = list_viewers;
442 i++;
443 }
444 } 444 }
445 445
446 items[i].desc = ID2P(LANG_CREATE_DIR); 446 items[i].desc = ID2P(LANG_CREATE_DIR);