Skip to content

Commit

Permalink
glui: fix add to playlist icon in quick menu (#17596)
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored Feb 18, 2025
1 parent e4fe551 commit 0ed66a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion menu/drivers/materialui.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0ed66a7

Please sign in to comment.