diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-01-25 08:29:12 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-01-25 08:29:12 +0000 |
| commit | c9bded807b727f2da977837ed4975a721ceabd5c (patch) | |
| tree | a08796d28fe0286b847d321abf97857b7a9d6627 /apps/onplay.c | |
| parent | 2aabc875bfb68142622e699fbb208bd808e2088f (diff) | |
| download | rockbox-c9bded807b727f2da977837ed4975a721ceabd5c.zip rockbox-c9bded807b727f2da977837ed4975a721ceabd5c.tar.gz rockbox-c9bded807b727f2da977837ed4975a721ceabd5c.tar.bz2 rockbox-c9bded807b727f2da977837ed4975a721ceabd5c.tar.xz | |
Added "Queue shuffled", for completeness
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8448 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
| -rw-r--r-- | apps/onplay.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/onplay.c b/apps/onplay.c index dac5d4b..6b274d7 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -319,6 +319,11 @@ static bool playlist_options(void) args[i].position = PLAYLIST_INSERT_LAST; args[i].queue = true; i++; + + items[i].desc = ID2P(LANG_QUEUE_SHUFFLED); + args[i].position = PLAYLIST_INSERT_SHUFFLED; + args[i].queue = true; + i++; } else if (((selected_file_attr & TREE_ATTR_MASK) == TREE_ATTR_MPA) || (selected_file_attr & ATTR_DIRECTORY)) |