Remove creator name from playlist item panel beatmap text

This commit is contained in:
Stedoss
2022-02-17 03:04:16 +00:00
parent 1f9892802c
commit aac1c53b06

View File

@ -291,10 +291,14 @@ namespace osu.Game.Screens.OnlinePlay
if (Item.Beatmap.Value != null)
{
beatmapText.AddLink(Item.Beatmap.Value.GetDisplayTitleRomanisable(), LinkAction.OpenBeatmap, Item.Beatmap.Value.OnlineID.ToString(), null, text =>
{
text.Truncate = true;
});
beatmapText.AddLink(Item.Beatmap.Value.GetDisplayTitleRomanisable(includeCreator: false),
LinkAction.OpenBeatmap,
Item.Beatmap.Value.OnlineID.ToString(),
null,
text =>
{
text.Truncate = true;
});
}
authorText.Clear();