1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 09:02:55 +08:00

Layout adjustment

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

View File

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