summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c
index e3735beb1b..b54238b08c 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -360,6 +360,12 @@ static int update_dir(void)
360 gui_synclist_set_title(&tree_lists, str(LANG_DIR_BROWSER), 360 gui_synclist_set_title(&tree_lists, str(LANG_DIR_BROWSER),
361 filetype_get_icon(ATTR_DIRECTORY)); 361 filetype_get_icon(ATTR_DIRECTORY));
362 } 362 }
363 else if(0 == strcasecmp(tc.currdir, PLUGIN_DIR))
364 {
365 /* Display "Plugins" for the rocks dir */
366 gui_synclist_set_title(&tree_lists, str(LANG_PLUGINS),
367 filetype_get_icon(ATTR_DIRECTORY));
368 }
363 else 369 else
364 gui_synclist_set_title(&tree_lists, title, 370 gui_synclist_set_title(&tree_lists, title,
365 filetype_get_icon(ATTR_DIRECTORY)); 371 filetype_get_icon(ATTR_DIRECTORY));