From 6d7832ff3c2467c21f2d0dc1977bf79e36dd3c8f Mon Sep 17 00:00:00 2001 From: Tyrrrz Date: Sun, 28 Aug 2016 23:51:04 +0300 Subject: [PATCH] [CalculatorViewModel] Get currently playing beatmap automatically analyzes it if the operation was successful --- OsuHelper/ViewModels/CalculatorViewModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OsuHelper/ViewModels/CalculatorViewModel.cs b/OsuHelper/ViewModels/CalculatorViewModel.cs index c895771..d25e157 100644 --- a/OsuHelper/ViewModels/CalculatorViewModel.cs +++ b/OsuHelper/ViewModels/CalculatorViewModel.cs @@ -204,6 +204,7 @@ private async void SetCurrentlyPlayingBeatmapID() // Get first ID and copy it over BeatmapID = beatmapIDs.First(); + AnalyzeCommand.Execute(null); } private async Task DownloadMap()