diff --git a/osu.Game/Screens/Select/SongSelect.cs b/osu.Game/Screens/Select/SongSelect.cs index 06e720693b..94af096bb8 100644 --- a/osu.Game/Screens/Select/SongSelect.cs +++ b/osu.Game/Screens/Select/SongSelect.cs @@ -957,8 +957,6 @@ namespace osu.Game.Screens.Select private void updateVisibleBeatmapCount() { - // 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). int carouselCountDisplayed = Carousel.CountDisplayed; if (FilterControl.CurrentTextSearch.Value == string.Empty) @@ -967,6 +965,8 @@ namespace osu.Game.Screens.Select } else { + // 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). FilterControl.InformationalText = carouselCountDisplayed != 1 ? $"{carouselCountDisplayed:#,0} matches" : $"{carouselCountDisplayed:#,0} match"; } }