forked from len0rd/rockbox
Browser headings should obey the Show Icons setting too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12535 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
421b67ea77
commit
e600af7db9
1 changed files with 3 additions and 3 deletions
|
@ -377,7 +377,7 @@ static int update_dir(void)
|
|||
|| global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
|
||||
{
|
||||
gui_synclist_set_title(&tree_lists, tagtree_get_title(&tc),
|
||||
filetype_get_icon(ATTR_DIRECTORY));
|
||||
global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -391,7 +391,7 @@ static int update_dir(void)
|
|||
if (global_settings.show_path_in_browser == SHOW_PATH_FULL)
|
||||
{
|
||||
gui_synclist_set_title(&tree_lists, tc.currdir,
|
||||
filetype_get_icon(ATTR_DIRECTORY));
|
||||
global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):NULL);
|
||||
}
|
||||
else if (global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
|
||||
{
|
||||
|
@ -403,7 +403,7 @@ static int update_dir(void)
|
|||
}
|
||||
else
|
||||
gui_synclist_set_title(&tree_lists, title,
|
||||
filetype_get_icon(ATTR_DIRECTORY));
|
||||
global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue