From 9d75ab85e921ca52376e737b3c8620255ad9078f Mon Sep 17 00:00:00 2001 From: DrabWeb Date: Fri, 3 Mar 2017 04:19:03 -0400 Subject: [PATCH] Put mod select over beatmap options --- osu.Game/Screens/Select/PlaySongSelect.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/osu.Game/Screens/Select/PlaySongSelect.cs b/osu.Game/Screens/Select/PlaySongSelect.cs index db1cb4c18d..68783f33db 100644 --- a/osu.Game/Screens/Select/PlaySongSelect.cs +++ b/osu.Game/Screens/Select/PlaySongSelect.cs @@ -130,16 +130,6 @@ namespace osu.Game.Screens.Select Right = 20, }, }, - modSelect = new ModSelectOverlay - { - RelativeSizeAxes = Axes.X, - Origin = Anchor.BottomCentre, - Anchor = Anchor.BottomCentre, - Margin = new MarginPadding - { - Bottom = 50, - }, - }, beatmapOptions = new BeatmapOptionsOverlay { OnRemoveFromUnplayed = null, @@ -151,6 +141,16 @@ namespace osu.Game.Screens.Select Bottom = 50, }, }, + modSelect = new ModSelectOverlay + { + RelativeSizeAxes = Axes.X, + Origin = Anchor.BottomCentre, + Anchor = Anchor.BottomCentre, + Margin = new MarginPadding + { + Bottom = 50, + }, + }, footer = new Footer { OnBack = Exit,