diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2006-05-05 07:01:43 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2006-05-05 07:01:43 +0000 |
| commit | a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed (patch) | |
| tree | c687f3549c8056390820a9e9b36978b725b376ca /apps/tree.c | |
| parent | b9615514bf861a94774fe05dd7a3eeb6bd006ac2 (diff) | |
| download | rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.zip rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.tar.gz rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.tar.bz2 rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.tar.xz | |
Enabled playlist functions on tracks in tagcache
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9877 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/apps/tree.c b/apps/tree.c index b19ffaa..c7a6c01 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -766,14 +766,10 @@ static bool dirbrowse(void) else { if (id3db) { - switch (tc.currtable) + if (tagtree_get_attr(&tc) == TREE_ATTR_MPA) { - case navibrowse: - if (tc.currextra != tag_title) - break; - attr=TREE_ATTR_MPA; - tagtree_get_filename(&tc, buf, sizeof(buf)); - break; + attr = TREE_ATTR_MPA; + tagtree_get_filename(&tc, buf, sizeof(buf)); } } else |