1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 17:13:06 +08:00
This commit is contained in:
Andrei Zavatski 2019-11-27 23:58:31 +03:00
parent 44cfe98278
commit 8077c86d13
4 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ namespace osu.Game.Overlays.Rankings.Tables
Text = $@"{item.Country.FullName}",
};
protected override Drawable[] CreateAdditionalContent(CountryStatistics item) => new[]
protected override Drawable[] CreateAdditionalContent(CountryStatistics item) => new Drawable[]
{
new ColoredRowText
{

View File

@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Rankings.Tables
new TableColumn("Performance", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
};
protected override Drawable[] CreateUniqueContent(UserStatistics item) => new[]
protected override Drawable[] CreateUniqueContent(UserStatistics item) => new Drawable[]
{
new RowText
{

View File

@ -90,7 +90,7 @@ namespace osu.Game.Overlays.Rankings.Tables
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(7, 0),
Children = new Drawable[]
Children = new[]
{
new UpdateableFlag(GetCountry(item))
{

View File

@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Rankings.Tables
new TableColumn("Ranked Score", Anchor.Centre, new Dimension(GridSizeMode.AutoSize))
};
protected override Drawable[] CreateUniqueContent(UserStatistics item) => new[]
protected override Drawable[] CreateUniqueContent(UserStatistics item) => new Drawable[]
{
new ColoredRowText
{