From 2af839cdbde33deef2c0e6c699e4ca816b791bca Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 15 Nov 2016 20:43:22 +0900 Subject: [PATCH] Render musicController above toolbar. --- osu.Game/OsuGame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs index 024d6f07b0..8e7b983de4 100644 --- a/osu.Game/OsuGame.cs +++ b/osu.Game/OsuGame.cs @@ -121,8 +121,8 @@ namespace osu.Game //overlay elements (chat = new ChatConsole(API) { Depth = 0 }).Preload(this, overlayContent.Add); - (musicController = new MusicController()).Preload(this, overlayContent.Add); (Options = new OptionsOverlay { Depth = 1 }).Preload(this, overlayContent.Add); + (musicController = new MusicController() { Depth = 3 }).Preload(this, overlayContent.Add); (Toolbar = new Toolbar { Depth = 2,