glui: fix add to playlist icon in quick menu (#17596)
This commit is contained in:
parent
e4fe551924
commit
0ed66a79f1
|
@ -11599,7 +11599,10 @@ static void materialui_list_insert(void *userdata,
|
||||||
node->icon_texture_index = MUI_TEXTURE_ADD_TO_FAVORITES;
|
node->icon_texture_index = MUI_TEXTURE_ADD_TO_FAVORITES;
|
||||||
node->icon_type = MUI_ICON_TYPE_INTERNAL;
|
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_texture_index = MUI_TEXTURE_PLAYLIST;
|
||||||
node->icon_type = MUI_ICON_TYPE_INTERNAL;
|
node->icon_type = MUI_ICON_TYPE_INTERNAL;
|
||||||
|
|
Loading…
Reference in New Issue