mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Fix crash on game exit due to incorrect scheduling of realm change handler
This commit is contained in:
@ -123,7 +123,7 @@ namespace osu.Game.Overlays.FirstRunSetup
|
|||||||
beatmapSubscription?.Dispose();
|
beatmapSubscription?.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void beatmapsChanged(IRealmCollection<BeatmapSetInfo> sender, ChangeSet? changes, Exception error)
|
private void beatmapsChanged(IRealmCollection<BeatmapSetInfo> sender, ChangeSet? changes, Exception error) => Schedule(() =>
|
||||||
{
|
{
|
||||||
currentlyLoadedBeatmaps.Text = FirstRunSetupBeatmapScreenStrings.CurrentlyLoadedBeatmaps(sender.Count);
|
currentlyLoadedBeatmaps.Text = FirstRunSetupBeatmapScreenStrings.CurrentlyLoadedBeatmaps(sender.Count);
|
||||||
|
|
||||||
@ -139,7 +139,7 @@ namespace osu.Game.Overlays.FirstRunSetup
|
|||||||
currentlyLoadedBeatmaps.ScaleTo(1.1f)
|
currentlyLoadedBeatmaps.ScaleTo(1.1f)
|
||||||
.ScaleTo(1, 1500, Easing.OutQuint);
|
.ScaleTo(1, 1500, Easing.OutQuint);
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
private void downloadTutorial()
|
private void downloadTutorial()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user