Fix fall-through scroll redirection

This commit is contained in:
Dean Herbert
2021-03-30 19:42:40 +09:00
parent 05961e98d5
commit a2f50af424
2 changed files with 8 additions and 7 deletions

View File

@ -879,13 +879,6 @@ namespace osu.Game
return component;
}
protected override bool OnScroll(ScrollEvent e)
{
// forward any unhandled mouse scroll events to the volume control.
volume.Adjust(GlobalAction.IncreaseVolume, e.ScrollDelta.Y, e.IsPrecise);
return true;
}
public bool OnPressed(GlobalAction action)
{
if (introScreen == null) return false;