mirror of https://github.com/ppy/osu
Correctly bypass last selected when it is filtered
This commit is contained in:
parent
3a50c4bb51
commit
be4a97c289
|
@ -333,8 +333,7 @@ public bool SelectNextRandom()
|
|||
else
|
||||
set = visibleSets.ElementAt(RNG.Next(visibleSets.Count));
|
||||
|
||||
var visibleBeatmaps = set.Beatmaps.Where(s => !s.Filtered.Value).ToList();
|
||||
select(visibleBeatmaps[RNG.Next(visibleBeatmaps.Count)]);
|
||||
select(set);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -756,7 +755,7 @@ public CarouselRoot(BeatmapCarousel carousel)
|
|||
|
||||
protected override void PerformSelection()
|
||||
{
|
||||
if (LastSelected == null)
|
||||
if (LastSelected == null || LastSelected.Filtered.Value)
|
||||
carousel.SelectNextRandom();
|
||||
else
|
||||
base.PerformSelection();
|
||||
|
|
Loading…
Reference in New Issue