diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-04-04 19:28:13 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-04-04 19:28:13 +0000 |
| commit | 4a63c09c8633cd7305af01d1f270125f7bd12a1e (patch) | |
| tree | f9e763dc95bb8add9f9624d42792e1f6a6e176ba /apps/tree.c | |
| parent | 461addf6582e6951374e23233ba3964feb23630b (diff) | |
| download | rockbox-4a63c09c8633cd7305af01d1f270125f7bd12a1e.zip rockbox-4a63c09c8633cd7305af01d1f270125f7bd12a1e.tar.gz rockbox-4a63c09c8633cd7305af01d1f270125f7bd12a1e.tar.bz2 rockbox-4a63c09c8633cd7305af01d1f270125f7bd12a1e.tar.xz | |
Initial support for the advanced conditional fully configurable tagcache
browser. Browsing not supported by numeric tags yet, and some features
work currently only when tagcache is loaded in ram.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9501 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/tree.c b/apps/tree.c index 3a0a34b..f523b1c 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -767,10 +767,9 @@ static bool dirbrowse(void) { switch (tc.currtable) { - case allsongs: - case songs4album: - case songs4artist: - case searchsongs: + case navibrowse: + if (tc.currextra != tag_title) + break; attr=TREE_ATTR_MPA; tagtree_get_filename(&tc, buf, sizeof(buf)); break; |