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

Allow changing volume in song select with arrow keys when pressing alt

This commit is contained in:
Joehu 2020-01-13 20:48:39 -08:00
parent a6f247314e
commit c196e83e75

View File

@ -436,7 +436,7 @@ namespace osu.Game.Screens.Select
break;
}
if (direction == 0)
if (direction == 0 || e.AltPressed)
return base.OnKeyDown(e);
SelectNext(direction, skipDifficulties);