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

Update BodyText of LocalScoreDeleteDialog

This commit is contained in:
Willy Tu 2019-12-20 12:00:10 -08:00
parent a55e5c5c43
commit 8353c893c0
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ namespace osu.Game.Tests.Visual.UserInterface
string accuracy = string.Format(score.Accuracy % 1 == 0 ? @"{0:P0}" : @"{0:P2}", score.Accuracy);
BodyText = $@"{score} {Environment.NewLine} Rank: {score.Rank} - Max Combo: {score.MaxCombo} - {accuracy}";
BodyText = $@"{score.User}'s {accuracy} {score.Rank} Rank on {score.Beatmap}";
Icon = FontAwesome.Solid.Eraser;
HeaderText = @"Deleting this local score. Are you sure?";
Buttons = new PopupDialogButton[]

View File

@ -20,7 +20,7 @@ namespace osu.Game.Screens.Select
string accuracy = string.Format(score.Accuracy % 1 == 0 ? @"{0:P0}" : @"{0:P2}", score.Accuracy);
BodyText = $@"{score} {Environment.NewLine} Rank: {score.Rank} - Max Combo: {score.MaxCombo} - {accuracy}";
BodyText = $@"{score.User}'s {accuracy} {score.Rank} Rank on {score.Beatmap}";
Icon = FontAwesome.Solid.Eraser;
HeaderText = @"Deleting this local score. Are you sure?";
Buttons = new PopupDialogButton[]