From 0ed66a79f1b2e94949f642d00133f3ca25e75bdb Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Tue, 18 Feb 2025 16:55:04 -0500 Subject: [PATCH] glui: fix add to playlist icon in quick menu (#17596) --- menu/drivers/materialui.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/menu/drivers/materialui.c b/menu/drivers/materialui.c index f226f2f576..030924535f 100644 --- a/menu/drivers/materialui.c +++ b/menu/drivers/materialui.c @@ -11599,7 +11599,10 @@ static void materialui_list_insert(void *userdata, node->icon_texture_index = MUI_TEXTURE_ADD_TO_FAVORITES; node->icon_type = MUI_ICON_TYPE_INTERNAL; } - else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST))) + else if ( + string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST)) + || string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST_QUICKMENU)) + ) { node->icon_texture_index = MUI_TEXTURE_PLAYLIST; node->icon_type = MUI_ICON_TYPE_INTERNAL;