Layout adjustment

This commit is contained in:
Andrei Zavatski 2019-11-11 18:51:29 +03:00
parent 5f5d130d1a
commit c5b64e26a3

View File

@ -110,6 +110,20 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
} }
} }
}, },
new Container
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Children = new Drawable[]
{
new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, spacing),
Children = new Drawable[]
{
topScoresContainer = new FillFlowContainer topScoresContainer = new FillFlowContainer
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
@ -126,8 +140,13 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
}, },
loadingAnimation = new LoadingAnimation loadingAnimation = new LoadingAnimation
{ {
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Alpha = 0, Alpha = 0,
Margin = new MarginPadding(20), },
}
}
}
}, },
}; };
} }