From ea9a0b52d57487907d1bca24aa71160a9946a972 Mon Sep 17 00:00:00 2001 From: Denis Titovets Date: Fri, 8 Aug 2025 16:58:18 +0300 Subject: [PATCH] Arrange `SortMode` in alphabetical order --- osu.Game/Screens/Select/Filter/SortMode.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/osu.Game/Screens/Select/Filter/SortMode.cs b/osu.Game/Screens/Select/Filter/SortMode.cs index 1d71cba81a..5dd25d4846 100644 --- a/osu.Game/Screens/Select/Filter/SortMode.cs +++ b/osu.Game/Screens/Select/Filter/SortMode.cs @@ -17,21 +17,21 @@ namespace osu.Game.Screens.Select.Filter [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.BPM))] BPM, - [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.DateSubmitted))] - DateSubmitted, - [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.DateAdded))] DateAdded, [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.DateRanked))] DateRanked, - [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.LastPlayed))] - LastPlayed, + [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.DateSubmitted))] + DateSubmitted, [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.Difficulty))] Difficulty, + [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.LastPlayed))] + LastPlayed, + [LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.Length))] Length,