diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-13 07:33:30 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-13 07:33:30 +0000 |
| commit | 25efd331e82ef49da700bbd567195d80fffb33eb (patch) | |
| tree | 56d8ecc0513643f1e9c09f0dbf2201ea384cb839 /apps/onplay.c | |
| parent | e8a0506583c5e401ea753ff30a3c717e837dffb8 (diff) | |
| download | rockbox-25efd331e82ef49da700bbd567195d80fffb33eb.zip rockbox-25efd331e82ef49da700bbd567195d80fffb33eb.tar.gz rockbox-25efd331e82ef49da700bbd567195d80fffb33eb.tar.bz2 rockbox-25efd331e82ef49da700bbd567195d80fffb33eb.tar.xz | |
Patch #4791 by Jonathan Gordon - Remove duplicates from the Open-with menu, and allow regular rocks to be loaded as viewers. Also allow all file types in the Open-with menu, not only the registered ones.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9025 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
| -rw-r--r-- | apps/onplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/onplay.c b/apps/onplay.c index be11b9a..e057623 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -628,7 +628,7 @@ int onplay(char* file, int attr, int from) } } - if (!(attr & ATTR_DIRECTORY) && attr) + if (!(attr & ATTR_DIRECTORY)) { items[i].desc = ID2P(LANG_ONPLAY_OPEN_WITH); items[i].function = list_viewers; |