From 42d03c7602dadc098cf95e9f9fd298a6642e2c3e Mon Sep 17 00:00:00 2001 From: jhk2601 Date: Mon, 28 Oct 2024 15:45:47 -0400 Subject: [PATCH] moved comment --- osu.Game/Screens/Select/SongSelect.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; } }