From 361e187949321cbd8f9da01d333eb41b89c052bf Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 7 Apr 2017 14:32:33 +0900 Subject: [PATCH] Temporarily disable button scaling. --- osu.Game/Overlays/MusicController.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index fb319d46d5..c91618f959 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -122,6 +122,7 @@ private void load(OsuGameBase game, OsuConfigManager config, BeatmapDatabase bea AutoSizeAxes = Axes.X, Height = bottom_black_area_height, Direction = FillDirection.Horizontal, + Spacing = new Vector2(5), Origin = Anchor.BottomCentre, Anchor = Anchor.BottomCentre, Children = new[] @@ -133,7 +134,7 @@ private void load(OsuGameBase game, OsuConfigManager config, BeatmapDatabase bea }, playButton = new Button { - Scale = new Vector2(1.4f), + //Scale = new Vector2(1.4f), Action = () => { if (current?.Track == null) return; @@ -471,7 +472,7 @@ protected override void OnHoverLost(InputState state) protected override bool OnMouseDown(InputState state, MouseDownEventArgs args) { - content.ScaleTo(0.7f, 2000, EasingTypes.OutQuint); + content.ScaleTo(1, 2000, EasingTypes.OutQuint); return base.OnMouseDown(state, args); }