Change back to solid icon

This commit is contained in:
smoogipoo
2020-09-08 00:04:03 +09:00
parent a1214512bc
commit e37c04cb6d
2 changed files with 8 additions and 8 deletions

View File

@ -211,12 +211,12 @@ namespace osu.Game.Screens.Select
if (collectionBeatmaps.Contains(beatmap.Value.BeatmapInfo))
{
addOrRemoveButton.Icon = FontAwesome.Regular.MinusSquare;
addOrRemoveButton.Icon = FontAwesome.Solid.MinusSquare;
addOrRemoveButton.IconColour = colours.Red;
}
else
{
addOrRemoveButton.Icon = FontAwesome.Regular.PlusSquare;
addOrRemoveButton.Icon = FontAwesome.Solid.PlusSquare;
addOrRemoveButton.IconColour = colours.Green;
}
}