From 5719c6656aa7d01ecf740934604996ffaa3301e3 Mon Sep 17 00:00:00 2001 From: DrabWeb Date: Sat, 4 Mar 2017 22:38:01 -0400 Subject: [PATCH] Update to work with latest framework --- .../Select/Leaderboards/LeaderboardScoreDisplay.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/osu.Game/Screens/Select/Leaderboards/LeaderboardScoreDisplay.cs b/osu.Game/Screens/Select/Leaderboards/LeaderboardScoreDisplay.cs index 3302009a5c..c9242a9ba3 100644 --- a/osu.Game/Screens/Select/Leaderboards/LeaderboardScoreDisplay.cs +++ b/osu.Game/Screens/Select/Leaderboards/LeaderboardScoreDisplay.cs @@ -157,14 +157,12 @@ namespace osu.Game.Screens.Select.Leaderboards Origin = Anchor.BottomLeft, Anchor = Anchor.BottomLeft, AutoSizeAxes = Axes.Both, - Direction = FillDirection.Right, + Direction = FillDirection.Horizontal, Spacing = new Vector2(10f, 0f), Children = new Drawable[] { new Container { - Origin = Anchor.BottomLeft, - Anchor = Anchor.BottomLeft, Size = new Vector2(87f, 20f), Masking = true, Children = new Drawable[] @@ -186,7 +184,7 @@ namespace osu.Game.Screens.Select.Leaderboards new FillFlowContainer { AutoSizeAxes = Axes.Both, - Direction = FillDirection.Right, + Direction = FillDirection.Horizontal, Spacing = new Vector2(10f, 0f), Margin = new MarginPadding { Left = 10, }, Children = new Drawable[] @@ -218,7 +216,7 @@ namespace osu.Game.Screens.Select.Leaderboards AutoSizeAxes = Axes.Both, // TODO: Probably remove? Seems like others don't like this kind of thing Position = new Vector2(0f, 4f), //properly align the mod icons - Direction = FillDirection.Left, + Direction = FillDirection.Horizontal, }, }, },