Uppercase sort filter control text.

This commit is contained in:
Lucas A 2021-07-30 19:07:49 +02:00
parent 5381e11880
commit 652fe6c413
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Extensions.LocalisationExtensions;
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
@ -11,7 +12,7 @@ public class RankingsSortTabControl : OverlaySortTabControl<RankingsSortCriteria
{
public RankingsSortTabControl()
{
Title = RankingsStrings.FilterTitle;
Title = RankingsStrings.FilterTitle.ToUpper();
}
}