mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 03:25:11 +08:00
CI fixes
This commit is contained in:
parent
44cfe98278
commit
8077c86d13
@ -35,7 +35,7 @@ namespace osu.Game.Overlays.Rankings.Tables
|
|||||||
Text = $@"{item.Country.FullName}",
|
Text = $@"{item.Country.FullName}",
|
||||||
};
|
};
|
||||||
|
|
||||||
protected override Drawable[] CreateAdditionalContent(CountryStatistics item) => new[]
|
protected override Drawable[] CreateAdditionalContent(CountryStatistics item) => new Drawable[]
|
||||||
{
|
{
|
||||||
new ColoredRowText
|
new ColoredRowText
|
||||||
{
|
{
|
||||||
|
@ -19,7 +19,7 @@ namespace osu.Game.Overlays.Rankings.Tables
|
|||||||
new TableColumn("Performance", Anchor.Centre, new Dimension(GridSizeMode.AutoSize)),
|
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
|
new RowText
|
||||||
{
|
{
|
||||||
|
@ -90,7 +90,7 @@ namespace osu.Game.Overlays.Rankings.Tables
|
|||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Direction = FillDirection.Horizontal,
|
Direction = FillDirection.Horizontal,
|
||||||
Spacing = new Vector2(7, 0),
|
Spacing = new Vector2(7, 0),
|
||||||
Children = new Drawable[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
new UpdateableFlag(GetCountry(item))
|
new UpdateableFlag(GetCountry(item))
|
||||||
{
|
{
|
||||||
|
@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Rankings.Tables
|
|||||||
new TableColumn("Ranked Score", Anchor.Centre, new Dimension(GridSizeMode.AutoSize))
|
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
|
new ColoredRowText
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user