From 2f32c4d4d1d4edb62a167746e7203d481773edff Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Tue, 25 Dec 2018 17:17:51 +0900 Subject: [PATCH] Fix title of match song select --- osu.Game/Screens/Select/MatchSongSelect.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Screens/Select/MatchSongSelect.cs b/osu.Game/Screens/Select/MatchSongSelect.cs index 2008c9b783..f5ce34ea25 100644 --- a/osu.Game/Screens/Select/MatchSongSelect.cs +++ b/osu.Game/Screens/Select/MatchSongSelect.cs @@ -2,6 +2,7 @@ // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; +using Humanizer; using osu.Game.Online.Multiplayer; using osu.Game.Screens.Multi; @@ -12,6 +13,7 @@ namespace osu.Game.Screens.Select public Action Selected; public string ShortTitle => "song selection"; + public override string Title => ShortTitle.Humanize(); protected override bool OnStart() {