1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Merge pull request #5098 from peppy/add-spacing-user-profile-ranks

Add some spacing between user profile ranks
This commit is contained in:
Dan Balasescu 2019-06-21 16:21:29 +09:00 committed by GitHub
commit 640dd28f1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -116,6 +116,7 @@ namespace osu.Game.Overlays.Profile.Header
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5),
Children = new[]
{
scoreRankInfos[ScoreRank.XH] = new ScoreRankInfo(ScoreRank.XH),
@ -200,7 +201,7 @@ namespace osu.Game.Overlays.Profile.Header
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new UpdateableRank(rank)
new DrawableRank(rank)
{
RelativeSizeAxes = Axes.X,
Height = 30,