Show count of visible beatmaps at song select

This commit is contained in:
Dean Herbert
2023-03-03 15:25:55 +09:00
parent 29be26b150
commit dc669835e2
4 changed files with 90 additions and 57 deletions

View File

@ -40,6 +40,7 @@ using osu.Game.Skinning;
using osuTK;
using osuTK.Graphics;
using osuTK.Input;
using osu.Game.Localisation;
namespace osu.Game.Screens.Select
{
@ -162,6 +163,7 @@ namespace osu.Game.Screens.Select
BleedBottom = Footer.HEIGHT,
SelectionChanged = updateSelectedBeatmap,
BeatmapSetsChanged = carouselBeatmapsLoaded,
FilterApplied = () => FilterControl.InformationalText = SongSelectStrings.BeatmapsDisplayed(Carousel.CountDisplayed),
GetRecommendedBeatmap = s => recommender?.GetRecommendedBeatmap(s),
}, c => carouselContainer.Child = c);