Merge pull request #30274 from shinmorisawa/master

Respect "Prefer metadata in original language" toggle in beatmap deletion dialog
This commit is contained in:
Bartłomiej Dach 2024-10-14 12:02:03 +02:00 committed by GitHub
commit 639eb7ae4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public partial class BeatmapDeleteDialog : DeletionDialog
public BeatmapDeleteDialog(BeatmapSetInfo beatmapSet)
{
this.beatmapSet = beatmapSet;
BodyText = $@"{beatmapSet.Metadata.Artist} - {beatmapSet.Metadata.Title}";
BodyText = beatmapSet.Metadata.GetDisplayTitleRomanisable(false);
}
[BackgroundDependencyLoader]