From ded105746c73974ef48a84161a479220117a0d20 Mon Sep 17 00:00:00 2001 From: ToadKing Date: Thu, 11 Apr 2013 21:00:13 -0400 Subject: [PATCH] fix RGUI file browser --- frontend/menu/rgui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/menu/rgui.c b/frontend/menu/rgui.c index c071ec6d6b..f2c748212a 100644 --- a/frontend/menu/rgui.c +++ b/frontend/menu/rgui.c @@ -1714,7 +1714,7 @@ static bool directory_parse(rgui_handle_t *rgui, const char *directory, unsigned path = path_basename(path); rgui_list_push(ctx, path, - is_dir ? menu_type : RGUI_FILE_PLAIN, 0); + is_dir ? RGUI_FILE_DIRECTORY : RGUI_FILE_PLAIN, 0); } string_list_free(list);