mirror of https://github.com/ppy/osu
Revert "Remove now redundant inclusion of `TouchMoveEvent` in `OsuInputManager.Handle`"
This reverts commit bc1f1f35b5
.
This commit is contained in:
parent
bc1f1f35b5
commit
cf30411288
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue