Add comment for alt pressed

Taken from OsuScrollContainer
This commit is contained in:
Joehu
2020-01-14 20:52:15 -08:00
parent 2060be345d
commit b42b23d65b

View File

@ -412,6 +412,8 @@ namespace osu.Game.Screens.Select
protected override bool OnKeyDown(KeyDownEvent e)
{
// allow for controlling volume when alt is held.
// mostly for compatibility with osu-stable.
if (e.AltPressed)
return base.OnKeyDown(e);