mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 15:33:05 +08:00
Update BodyText of LocalScoreDeleteDialog
This commit is contained in:
parent
a55e5c5c43
commit
8353c893c0
@ -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[]
|
||||
|
@ -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[]
|
||||
|
Loading…
Reference in New Issue
Block a user