summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-01-13 09:29:45 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-01-13 09:29:45 +0000
commit189f9e2be958c0ea9782cb281b36776c5d79c4e3 (patch)
treea402a479005e10942d29c8608739aa29f9b4c3dd /apps/tree.c
parentf4f90c2283daa9c47f056a79125dc5b0d535d392 (diff)
downloadrockbox-189f9e2be958c0ea9782cb281b36776c5d79c4e3.zip
rockbox-189f9e2be958c0ea9782cb281b36776c5d79c4e3.tar.gz
rockbox-189f9e2be958c0ea9782cb281b36776c5d79c4e3.tar.bz2
rockbox-189f9e2be958c0ea9782cb281b36776c5d79c4e3.tar.xz
charcell doesnt show titles in lists, so remove the "show path" setting and free up some bin space
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16069 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 35fa053..09c70f0 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -423,6 +423,7 @@ static int update_dir(void)
#ifdef HAVE_TAGCACHE
if (id3db)
{
+#ifdef HAVE_LCD_BITMAP
if (global_settings.show_path_in_browser == SHOW_PATH_FULL
|| global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
{
@@ -434,10 +435,12 @@ static int update_dir(void)
/* Must clear the title as the list is reused */
gui_synclist_set_title(&tree_lists, NULL, NOICON);
}
+#endif
}
else
#endif
{
+#ifdef HAVE_LCD_BITMAP
if (global_settings.show_path_in_browser &&
*(tc.dirfilter) == SHOW_PLUGINS)
{
@@ -474,6 +477,7 @@ static int update_dir(void)
/* Must clear the title as the list is reused */
gui_synclist_set_title(&tree_lists, NULL, NOICON);
}
+#endif
}
gui_synclist_set_nb_items(&tree_lists, tc.filesindir);