diff --git a/osu.Game/Screens/Play/SongProgressBar.cs b/osu.Game/Screens/Play/SongProgressBar.cs index 84928f437a..7fabf2e80e 100644 --- a/osu.Game/Screens/Play/SongProgressBar.cs +++ b/osu.Game/Screens/Play/SongProgressBar.cs @@ -15,9 +15,8 @@ namespace osu.Game.Screens.Play { public Action OnSeek; - private Box fill; - private Box background; - private Container handleBase; + private readonly Box fill; + private readonly Container handleBase; public Color4 FillColour { @@ -49,7 +48,7 @@ namespace osu.Game.Screens.Play Children = new Drawable[] { - background = new Box + new Box { Name = "Background", Anchor = Anchor.BottomLeft,