Index: apps/tree.c =================================================================== --- apps/tree.c (revision 20609) +++ apps/tree.c (working copy) @@ -916,6 +916,16 @@ start_wps = false; last_context = curr_context; +#ifdef HAVE_LCD_BITMAP + /* Center on the currently loaded font when browsing fonts */ + if (dirfilter == SHOW_FONT) + { + static char buf[MAX_PATH]; + snprintf(buf, sizeof(buf), FONT_DIR "/%s.fnt", + global_settings.font_file); + set_current_file(buf); + } +#endif ret_val = dirbrowse(); tc = backup; curr_context = last_context;