1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-17 11:12:55 +08:00

allow alt scroll for volume in editor

This commit is contained in:
OliBomby 2024-07-07 21:33:43 +02:00
parent 5da8bb5bec
commit f36321a8ea

View File

@ -675,7 +675,7 @@ namespace osu.Game.Screens.Edit
protected override bool OnScroll(ScrollEvent e)
{
if (e.ControlPressed || e.SuperPressed)
if (e.ControlPressed || e.AltPressed || e.SuperPressed)
return false;
const double precision = 1;