1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Adjust DrawableTeamTitleWithHeader to match new layout

This commit is contained in:
Dean Herbert 2023-10-31 12:44:43 +09:00
parent 87c9df937f
commit feeb95e4c3
No known key found for this signature in database

View File

@ -18,21 +18,12 @@ namespace osu.Game.Tournament.Components
{ {
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical, Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 10), Spacing = new Vector2(0, 5),
Children = new Drawable[] Children = new Drawable[]
{ {
new DrawableTeamHeader(colour), new DrawableTeamHeader(colour),
new FillFlowContainer new DrawableTeamTitle(team),
{ new DrawableTeamSeed(team),
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5),
Children = new Drawable[]
{
new DrawableTeamTitle(team),
new DrawableTeamSeed(team),
}
}
} }
}; };
} }