mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Make selection triggering more liberal
This commit is contained in:
parent
b36dd21f07
commit
9ccc49c9b5
@ -513,7 +513,7 @@ namespace osu.Game.Screens.Select
|
||||
currentY += DrawHeight / 2;
|
||||
scrollableContent.Height = currentY;
|
||||
|
||||
if (selectedBeatmapSet != null && (selectedBeatmap == null || selectedBeatmapSet.State.Value != CarouselItemState.Selected))
|
||||
if (selectedBeatmapSet == null || selectedBeatmap == null || selectedBeatmapSet.State.Value != CarouselItemState.Selected)
|
||||
{
|
||||
selectedBeatmapSet = null;
|
||||
SelectionChanged?.Invoke(null);
|
||||
|
Loading…
Reference in New Issue
Block a user