mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 07:42:55 +08:00
Remove now redundant inclusion of TouchMoveEvent
in OsuInputManager.Handle
Now it's handled separately via the `HandleMouseTouchStateChange` override.
This commit is contained in:
parent
5a953f3811
commit
bc1f1f35b5
@ -35,7 +35,7 @@ namespace osu.Game.Rulesets.Osu
|
|||||||
|
|
||||||
protected override bool Handle(UIEvent e)
|
protected override bool Handle(UIEvent e)
|
||||||
{
|
{
|
||||||
if ((e is MouseMoveEvent || e is TouchMoveEvent) && !AllowUserCursorMovement) return false;
|
if (e is MouseMoveEvent && !AllowUserCursorMovement) return false;
|
||||||
|
|
||||||
return base.Handle(e);
|
return base.Handle(e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user