mirror of
https://github.com/ppy/osu
synced 2025-04-06 17:22:25 +00:00
Remove unnecessary GridContainer
and list mods verticall to give more space
This commit is contained in:
parent
8eace12fe3
commit
f87920cd83
@ -47,55 +47,42 @@ namespace osu.Game.Online.Leaderboards
|
|||||||
Alpha = 0.9f,
|
Alpha = 0.9f,
|
||||||
Colour = colours.Gray3,
|
Colour = colours.Gray3,
|
||||||
},
|
},
|
||||||
new GridContainer
|
new FillFlowContainer
|
||||||
{
|
{
|
||||||
Margin = new MarginPadding(5f),
|
Margin = new MarginPadding(5f),
|
||||||
|
Spacing = new Vector2(10),
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
RowDimensions = new[]
|
Direction = FillDirection.Vertical,
|
||||||
{
|
Children = new Drawable[]
|
||||||
new Dimension(GridSizeMode.AutoSize),
|
|
||||||
new Dimension(GridSizeMode.AutoSize),
|
|
||||||
new Dimension(GridSizeMode.AutoSize),
|
|
||||||
new Dimension(GridSizeMode.AutoSize),
|
|
||||||
},
|
|
||||||
ColumnDimensions = new[]
|
|
||||||
{
|
|
||||||
new Dimension(GridSizeMode.AutoSize),
|
|
||||||
},
|
|
||||||
Content = new[]
|
|
||||||
{
|
{
|
||||||
// Info row
|
// Info row
|
||||||
new Drawable[]
|
timestampLabel = new OsuSpriteText
|
||||||
{
|
{
|
||||||
timestampLabel = new OsuSpriteText
|
Font = OsuFont.GetFont(size: 12, weight: FontWeight.SemiBold),
|
||||||
{
|
|
||||||
Font = OsuFont.GetFont(size: 12, weight: FontWeight.SemiBold),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
// Mods row
|
// Mods row
|
||||||
new Drawable[]
|
modStatistics = new FillFlowContainer<ModCell>
|
||||||
{
|
{
|
||||||
modStatistics = new FillFlowContainer<ModCell>
|
AutoSizeAxes = Axes.Both,
|
||||||
{
|
Direction = FillDirection.Vertical,
|
||||||
AutoSizeAxes = Axes.Both,
|
|
||||||
Direction = FillDirection.Horizontal,
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
// Actual stats rows
|
new FillFlowContainer
|
||||||
new Drawable[]
|
|
||||||
{
|
{
|
||||||
topScoreStatistics = new FillFlowContainer<HitResultCell>
|
AutoSizeAxes = Axes.Both,
|
||||||
|
Direction = FillDirection.Vertical,
|
||||||
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
// Actual stats rows
|
||||||
Direction = FillDirection.Horizontal,
|
topScoreStatistics = new FillFlowContainer<HitResultCell>
|
||||||
}
|
{
|
||||||
},
|
AutoSizeAxes = Axes.Both,
|
||||||
new Drawable[]
|
Direction = FillDirection.Horizontal,
|
||||||
{
|
},
|
||||||
bottomScoreStatistics = new FillFlowContainer<HitResultCell>
|
bottomScoreStatistics = new FillFlowContainer<HitResultCell>
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Direction = FillDirection.Horizontal,
|
Direction = FillDirection.Horizontal,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user