From 9630002a68908225a0854a26e3cd2421d5271cac Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 25 Mar 2025 14:27:24 +0900 Subject: [PATCH] Fix overlapping placeholders in beatmap info leaderboard Closes https://github.com/ppy/osu/issues/32508. --- osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs b/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs index 9b9661f83d..cc06383274 100644 --- a/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs +++ b/osu.Game/Overlays/BeatmapSet/Scores/ScoresContainer.cs @@ -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();