1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 04:41:19 +08:00

Merge pull request #29068 from bdach/results-statistics-toggle-crash

Fix crash when toggling extended statistics visibility during results load
This commit is contained in:
Dean Herbert
2024-07-25 22:49:41 +09:00
committed by GitHub
Unverified
+2 -1
View File
@@ -398,7 +398,8 @@ namespace osu.Game.Screens.Ranking
break;
case GlobalAction.Select:
StatisticsPanel.ToggleVisibility();
if (SelectedScore.Value != null)
StatisticsPanel.ToggleVisibility();
return true;
}