mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Re-fix null selection
This commit is contained in:
@ -407,7 +407,7 @@ namespace osu.Game.Screens.Select
|
||||
currentY += DrawHeight / 2;
|
||||
scrollableContent.Height = currentY;
|
||||
|
||||
if (selectedBeatmapSet?.Filtered.Value == true)
|
||||
if (selectedBeatmapSet != null && selectedBeatmapSet.State.Value != CarouselItemState.Selected)
|
||||
{
|
||||
selectedBeatmapSet = null;
|
||||
SelectionChanged?.Invoke(null);
|
||||
|
Reference in New Issue
Block a user