1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 19:54:15 +08:00

Merge pull request #32566 from peppy/fix-double-placeholders

Fix overlapping placeholders in beatmap info leaderboard
This commit is contained in:
Dan Balasescu
2025-03-25 16:43:37 +09:00
committed by GitHub
Unverified
@@ -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();