diff --git a/osu.Game/GameModes/Play/PlaySongSelect.cs b/osu.Game/GameModes/Play/PlaySongSelect.cs index 72b9dddd42..6922f0fb5e 100644 --- a/osu.Game/GameModes/Play/PlaySongSelect.cs +++ b/osu.Game/GameModes/Play/PlaySongSelect.cs @@ -296,8 +296,11 @@ namespace osu.Game.GameModes.Play private void addBeatmapSets() { if (database.Query().Count() > 0) + { + if (playButton.IsVisible == false) playButton.Show(); foreach (var beatmapSet in database.Query()) addBeatmapSet(beatmapSet); + } else playButton.Hide(); } } diff --git a/osu.Game/Graphics/Background/Background.cs b/osu.Game/Graphics/Background/Background.cs index 1b36feb761..8d004dcf86 100644 --- a/osu.Game/Graphics/Background/Background.cs +++ b/osu.Game/Graphics/Background/Background.cs @@ -10,7 +10,6 @@ using OpenTK.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework; using System.Threading.Tasks; -using osu.Framework.Graphics.Textures; namespace osu.Game.Graphics.Background {