mirror of
https://github.com/ppy/osu.git
synced 2026-06-03 02:31:25 +08:00
Lower decimal digits to one
This commit is contained in:
@@ -275,7 +275,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
|
||||
Origin = Anchor.BottomLeft,
|
||||
Font = font,
|
||||
Text = Score.PP.ToLocalisableString(@"N0"),
|
||||
TooltipText = Score.PP.ToLocalisableString(@"#,0.###"),
|
||||
TooltipText = Score.PP.ToLocalisableString(@"N1"),
|
||||
Colour = colourProvider.Highlight1,
|
||||
},
|
||||
new SpriteTextWithTooltip
|
||||
@@ -284,7 +284,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
|
||||
Origin = Anchor.BottomLeft,
|
||||
Font = font.With(size: 12),
|
||||
Text = "pp",
|
||||
TooltipText = Score.PP.ToLocalisableString(@"#,0.###"),
|
||||
TooltipText = Score.PP.ToLocalisableString(@"N1"),
|
||||
Colour = colourProvider.Light3,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user