Fix tests

This commit is contained in:
smoogipoo
2020-09-08 00:07:12 +09:00
parent e37c04cb6d
commit ca4423af74
2 changed files with 9 additions and 10 deletions

View File

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