mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Remove one more usage of IsManaged
which could potentially go wrong
This commit is contained in:
@ -117,7 +117,7 @@ namespace osu.Game.Screens.Select
|
|||||||
newRoot.AddChildren(beatmapSets.Select(createCarouselSet).Where(g => g != null));
|
newRoot.AddChildren(beatmapSets.Select(createCarouselSet).Where(g => g != null));
|
||||||
|
|
||||||
root = newRoot;
|
root = newRoot;
|
||||||
if (selectedBeatmapSet != null && (!selectedBeatmapSet.BeatmapSet.IsManaged || !beatmapSets.Contains(selectedBeatmapSet.BeatmapSet)))
|
if (selectedBeatmapSet != null && !beatmapSets.Contains(selectedBeatmapSet.BeatmapSet))
|
||||||
selectedBeatmapSet = null;
|
selectedBeatmapSet = null;
|
||||||
|
|
||||||
Scroll.Clear(false);
|
Scroll.Clear(false);
|
||||||
|
Reference in New Issue
Block a user