mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 12:57:39 +09: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);
|
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;
|
Icon = FontAwesome.Solid.Eraser;
|
||||||
HeaderText = @"Deleting this local score. Are you sure?";
|
HeaderText = @"Deleting this local score. Are you sure?";
|
||||||
Buttons = new PopupDialogButton[]
|
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);
|
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;
|
Icon = FontAwesome.Solid.Eraser;
|
||||||
HeaderText = @"Deleting this local score. Are you sure?";
|
HeaderText = @"Deleting this local score. Are you sure?";
|
||||||
Buttons = new PopupDialogButton[]
|
Buttons = new PopupDialogButton[]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user