1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 22:22:54 +08:00

Fix back-to-front condition on leaderboard always show configuration

This commit is contained in:
Dean Herbert 2022-09-13 19:57:40 +09:00
parent 94693a4667
commit 81b5e4a865

View File

@ -139,7 +139,7 @@ namespace osu.Game.Screens.Play
hideTargets = new List<Drawable> { mainComponents, KeyCounter, topRightElements };
if (alwaysShowLeaderboard)
if (!alwaysShowLeaderboard)
hideTargets.Add(LeaderboardFlow);
}