1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Merge pull request #16896 from Stedoss/remove-creator-from-playlist-item-beatmap-text

Remove creator name from playlist item panel beatmap text
This commit is contained in:
Dan Balasescu 2022-02-17 12:46:02 +09:00 committed by GitHub
commit 9410fb46af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();