Move matches string inside text box

This commit is contained in:
Dean Herbert
2023-03-16 16:34:31 +09:00
parent 89b42ddd98
commit cd102da3af
2 changed files with 33 additions and 21 deletions

View File

@ -168,8 +168,8 @@ namespace osu.Game.Screens.Select
Carousel.CountDisplayed == 1
// Intentionally not localised until we have proper support for this (see https://github.com/ppy/osu-framework/pull/4918
// but also in this case we want support for formatting a number within a string).
? $"{Carousel.CountDisplayed:#,0} beatmap displayed"
: $"{Carousel.CountDisplayed:#,0} beatmaps displayed";
? $"{Carousel.CountDisplayed:#,0} matching beatmap"
: $"{Carousel.CountDisplayed:#,0} matching beatmaps";
},
GetRecommendedBeatmap = s => recommender?.GetRecommendedBeatmap(s),
}, c => carouselContainer.Child = c);