1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:43:01 +08:00

Fix title of match song select

This commit is contained in:
smoogipoo 2018-12-25 17:17:51 +09:00
parent d4f5a8507c
commit 2f32c4d4d1

View File

@ -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<PlaylistItem> Selected;
public string ShortTitle => "song selection";
public override string Title => ShortTitle.Humanize();
protected override bool OnStart()
{