diff --git a/osu.Game/Screens/Play/SongProgressGraph.cs b/osu.Game/Screens/Play/SongProgressGraph.cs index 45da103d6a..a57253e517 100644 --- a/osu.Game/Screens/Play/SongProgressGraph.cs +++ b/osu.Game/Screens/Play/SongProgressGraph.cs @@ -151,7 +151,7 @@ namespace osu.Game.Screens.Play private const float cube_size = 4; private const float padding = 2; public const float WIDTH = cube_size + padding; - public const float HEIGHT = (cube_count * WIDTH) + padding + 1; + public const float HEIGHT = cube_count * WIDTH + padding; private readonly List drawableRows = new List();