From 0b8bd520abee4dd9c67594483d7cc8c3718050d2 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 31 Jan 2019 19:15:04 +0900 Subject: [PATCH] Shake in all cases --- osu.Game/Overlays/BeatmapSet/Buttons/DownloadButton.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/BeatmapSet/Buttons/DownloadButton.cs b/osu.Game/Overlays/BeatmapSet/Buttons/DownloadButton.cs index de0ced3f08..4d46d41c0f 100644 --- a/osu.Game/Overlays/BeatmapSet/Buttons/DownloadButton.cs +++ b/osu.Game/Overlays/BeatmapSet/Buttons/DownloadButton.cs @@ -95,7 +95,7 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons button.Action = () => { - if (State.Value == DownloadState.Downloading) + if (State.Value != DownloadState.NotDownloaded) { shakeContainer.Shake(); return;