glui: fix add to playlist icon in quick menu (#17596)

This commit is contained in:
Eric Warmenhoven 2025-02-18 16:55:04 -05:00 committed by GitHub
parent e4fe551924
commit 0ed66a79f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;