diff --git a/frontend/menu/disp/rgui.c b/frontend/menu/disp/rgui.c index d2ac655465..6058bd8049 100644 --- a/frontend/menu/disp/rgui.c +++ b/frontend/menu/disp/rgui.c @@ -500,7 +500,7 @@ static void rgui_render(void *data) strlcpy(entry_title_buf, path, sizeof(entry_title_buf)); strlcpy(type_str_buf, type_str, sizeof(type_str_buf)); - if ((type == RGUI_FILE_PLAIN || type == RGUI_FILE_DIRECTORY)) + if (type == RGUI_FILE_PLAIN || type == RGUI_FILE_DIRECTORY || type == RGUI_SETTINGS_CORE_INFO_NONE) menu_ticker_line(entry_title_buf, RGUI_TERM_WIDTH - (w + 1 + 2), g_extern.frame_count / 15, path, selected); else menu_ticker_line(type_str_buf, w, g_extern.frame_count / 15, type_str, selected);