Make buttons purple

This commit is contained in:
Dean Herbert
2020-02-20 18:43:47 +09:00
parent a0b578082e
commit 4a3f281855
4 changed files with 25 additions and 12 deletions

View File

@ -226,7 +226,7 @@ namespace osu.Game.Screens.Multi.Match.Components
},
new Drawable[]
{
new OsuButton
new PurpleTriangleButton
{
RelativeSizeAxes = Axes.X,
Height = 40,
@ -447,10 +447,7 @@ namespace osu.Game.Screens.Multi.Match.Components
Menu.MaxHeight = 100;
}
protected override string GenerateItemText(TimeSpan item)
{
return item.Humanize();
}
protected override string GenerateItemText(TimeSpan item) => item.Humanize();
}
}
}