Add some spacing between user profile ranks

This commit is contained in:
Dean Herbert 2019-06-21 15:27:19 +09:00
parent 554b451e04
commit 540b61da0a
1 changed files with 2 additions and 1 deletions

View File

@ -116,6 +116,7 @@ private void load(OsuColour colours)
Anchor = Anchor.CentreRight, Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight, Origin = Anchor.CentreRight,
Direction = FillDirection.Horizontal, Direction = FillDirection.Horizontal,
Spacing = new Vector2(5),
Children = new[] Children = new[]
{ {
scoreRankInfos[ScoreRank.XH] = new ScoreRankInfo(ScoreRank.XH), scoreRankInfos[ScoreRank.XH] = new ScoreRankInfo(ScoreRank.XH),
@ -200,7 +201,7 @@ public ScoreRankInfo(ScoreRank rank)
Direction = FillDirection.Vertical, Direction = FillDirection.Vertical,
Children = new Drawable[] Children = new Drawable[]
{ {
new UpdateableRank(rank) new DrawableRank(rank)
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Height = 30, Height = 30,