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

Fix overlapping placeholders in beatmap info leaderboard

Closes https://github.com/ppy/osu/issues/32508.
This commit is contained in:
Dean Herbert
2025-03-25 14:27:24 +09:00
Unverified
parent 1b0c60cff5
commit 9630002a68
@@ -249,6 +249,8 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
getScoresRequest = null;
noScoresPlaceholder.Hide();
noTeamPlaceholder.Hide();
notSupporterPlaceholder.Hide();
if (Beatmap.Value == null || Beatmap.Value.OnlineID <= 0 || (Beatmap.Value.Status <= BeatmapOnlineStatus.Pending))
{
@@ -271,9 +273,6 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
return;
}
noTeamPlaceholder.Hide();
notSupporterPlaceholder.Hide();
Show();
loading.Show();