mirror of
https://github.com/ppy/osu
synced 2025-03-30 23:26:53 +00:00
Re-fix null selection
This commit is contained in:
parent
19643ba5e6
commit
942054a30f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user