From c4132339a66211ac073f25f400541702146a80ae Mon Sep 17 00:00:00 2001 From: Maciej <3stylemylife@gmail.com> Date: Sun, 6 Nov 2016 04:12:35 +0100 Subject: [PATCH] Working beatmap background scaling fix Add a check for the working beatmap background width and assign a proper scaling value to cover the whole box --- osu.Game/Beatmaps/Drawable/BeatmapSetHeader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Beatmaps/Drawable/BeatmapSetHeader.cs b/osu.Game/Beatmaps/Drawable/BeatmapSetHeader.cs index 7c6fd5a963..12f5e63c1d 100644 --- a/osu.Game/Beatmaps/Drawable/BeatmapSetHeader.cs +++ b/osu.Game/Beatmaps/Drawable/BeatmapSetHeader.cs @@ -40,7 +40,7 @@ namespace osu.Game.Beatmaps.Drawable Texture = working.Background, Anchor = Anchor.Centre, Origin = Anchor.Centre, - Scale = new Vector2(0.5f), + Scale = new Vector2((working.Background.Width >= 1366) ? 0.5f : 0.6f), Colour = new Color4(200, 200, 200, 255), }, new FlowContainer