Fix Beatmap Delete Dialog

This commit is contained in:
Shin Morisawa 2024-10-14 09:55:28 +09:00
parent f8bce706fa
commit 90a08b8a68
1 changed files with 1 additions and 1 deletions

View File

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