Skip to content

Commit 0ed66a7

Browse files
authored
glui: fix add to playlist icon in quick menu (#17596)
1 parent e4fe551 commit 0ed66a7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

menu/drivers/materialui.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11599,7 +11599,10 @@ static void materialui_list_insert(void *userdata,
1159911599
node->icon_texture_index = MUI_TEXTURE_ADD_TO_FAVORITES;
1160011600
node->icon_type = MUI_ICON_TYPE_INTERNAL;
1160111601
}
11602-
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST)))
11602+
else if (
11603+
string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST))
11604+
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST_QUICKMENU))
11605+
)
1160311606
{
1160411607
node->icon_texture_index = MUI_TEXTURE_PLAYLIST;
1160511608
node->icon_type = MUI_ICON_TYPE_INTERNAL;

0 commit comments

Comments
 (0)