Revert "Remove now redundant inclusion of `TouchMoveEvent` in `OsuInputManager.Handle`"

This reverts commit bc1f1f35b5.
This commit is contained in:
Salman Ahmed 2021-12-10 17:13:13 +03:00
parent bc1f1f35b5
commit cf30411288
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public OsuInputManager(RulesetInfo ruleset)
protected override bool Handle(UIEvent e)
{
if (e is MouseMoveEvent && !AllowUserCursorMovement) return false;
if ((e is MouseMoveEvent || e is TouchMoveEvent) && !AllowUserCursorMovement) return false;
return base.Handle(e);
}