1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 05:19:55 +08:00

Remove unnecessary double-schedule in UpdateBeatmapSet

This commit is contained in:
Dean Herbert
2022-01-27 16:16:49 +09:00
Unverified
parent 54d18bd7ac
commit 0a45aa80cb
+3 -6
View File
@@ -311,13 +311,10 @@ namespace osu.Game.Screens.Select
itemsCache.Invalidate();
Schedule(() =>
{
if (!Scroll.UserScrolling)
ScrollToSelected(true);
if (!Scroll.UserScrolling)
ScrollToSelected(true);
BeatmapSetsChanged?.Invoke();
});
BeatmapSetsChanged?.Invoke();
});
/// <summary>