1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 06:27:18 +08:00

Merge pull request #1307 from huoyaoyuan/song-select-fix

Fix overlay toggling in song select.
This commit is contained in:
Dean Herbert 2017-09-23 20:01:10 +08:00 committed by GitHub
commit b59379252b

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);
}