From 0c6825bb209ccaff6052dee354670cda2a56a695 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Sun, 6 Nov 2016 05:35:35 +0800 Subject: [PATCH] Adjust visual behavior. --- osu.Game/Overlays/MusicController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index 0d94b8ead4..1984f132c9 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -42,7 +42,7 @@ namespace osu.Game.Overlays Masking = true; Anchor = Anchor.TopRight;//placeholder Origin = Anchor.TopRight; - Position = new Vector2(10, 50); + Position = new Vector2(10, 60); Children = new Drawable[] { new Box @@ -309,8 +309,8 @@ namespace osu.Game.Overlays } //placeholder for toggling - protected override void PopIn() => FadeIn(500); + protected override void PopIn() => FadeIn(100); - protected override void PopOut() => FadeOut(500); + protected override void PopOut() => FadeOut(100); } }