Fix song select not showing active beatmap if it is filtered by local criteria

This commit is contained in:
Dean Herbert
2020-02-10 16:31:52 +09:00
parent d61516e10c
commit 66fb72cd8a
4 changed files with 25 additions and 7 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Screens.Select.Carousel
/// <summary>
/// This item is not in a hidden state.
/// </summary>
public bool Visible => State.Value != CarouselItemState.Collapsed && !Filtered.Value;
public bool Visible => State.Value == CarouselItemState.Selected || (State.Value != CarouselItemState.Collapsed && !Filtered.Value);
public virtual List<DrawableCarouselItem> Drawables
{