diff --git a/osu.Game/Overlays/Profile/Header/DetailHeaderContainer.cs b/osu.Game/Overlays/Profile/Header/DetailHeaderContainer.cs index afafc120e4..0db1cb32d7 100644 --- a/osu.Game/Overlays/Profile/Header/DetailHeaderContainer.cs +++ b/osu.Game/Overlays/Profile/Header/DetailHeaderContainer.cs @@ -116,6 +116,7 @@ private void load(OsuColour colours) 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 @@ public ScoreRankInfo(ScoreRank rank) Direction = FillDirection.Vertical, Children = new Drawable[] { - new UpdateableRank(rank) + new DrawableRank(rank) { RelativeSizeAxes = Axes.X, Height = 30,