1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 20:33:35 +08:00

Remove points statistic from MatchmakingStatsTooltip (#37495)

matches web

| master | `osu-web` | PR |
|-|-|-|
| <img width="335" height="81" alt="image"
src="https://github.com/user-attachments/assets/942fc6c0-488b-49b8-97d4-d2d81eeeed92"
/> | <img width="307" height="83" alt="image"
src="https://github.com/user-attachments/assets/3ade843e-c735-4697-bf89-622de2d23d9c"
/> | <img width="338" height="135" alt="image"
src="https://github.com/user-attachments/assets/5867023b-145d-4836-ba95-9e2bdd9e1bbc"
/> |
This commit is contained in:
Denis Titovets
2026-04-27 07:58:37 +03:00
committed by GitHub
Unverified
parent 4b9335ca59
commit 34deaad718
@@ -71,7 +71,6 @@ namespace osu.Game.Overlays.Profile.Header.Components
new TableColumn(dimension: new Dimension(GridSizeMode.AutoSize)),
new TableColumn(RankingsStrings.MatchmakingWins, dimension: new Dimension(GridSizeMode.AutoSize)),
new TableColumn(RankingsStrings.MatchmakingPlays, dimension: new Dimension(GridSizeMode.AutoSize)),
new TableColumn(RankingsStrings.MatchmakingPoints, dimension: new Dimension(GridSizeMode.AutoSize)),
new TableColumn(RankingsStrings.MatchmakingRating, dimension: new Dimension(GridSizeMode.AutoSize)),
],
RowSize = new Dimension(GridSizeMode.AutoSize),
@@ -91,7 +90,6 @@ namespace osu.Game.Overlays.Profile.Header.Components
new StatisticText(colourProvider) { Text = $"#{stat.Rank:N0}" },
new StatisticText(colourProvider) { Text = stat.FirstPlacements.ToString("N0") },
new StatisticText(colourProvider) { Text = stat.Plays.ToString("N0") },
new StatisticText(colourProvider) { Text = stat.TotalPoints.ToString("N0") },
new StatisticText(colourProvider) { Text = stat.Rating.ToString("N0") + (stat.IsRatingProvisional ? "*" : string.Empty) }
];
}