1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 11:27:24 +08:00

Fix overlay toggling in song select.

This commit is contained in:
Huo Yaoyuan 2017-09-23 19:47:23 +08:00
parent 8853cab911
commit 442259d9e0

View File

@ -77,9 +77,9 @@ namespace osu.Game.Screens.Select
foreach (var o in overlays)
{
if (o == overlay)
overlay.ToggleVisibility();
o.ToggleVisibility();
else
overlay.Hide();
o.Hide();
}
}, hotkey, depth);
}