1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 01:59:53 +08:00

Slight formating change.

This commit is contained in:
Tav TaOr
2019-05-10 19:46:13 +03:00
Unverified
parent 023a5c6e4f
commit bda0b35d84
+1 -4
View File
@@ -30,10 +30,7 @@ namespace osu.Game.Rulesets.Osu
protected override bool Handle(UIEvent e)
{
if (!AllowUserCursorMovement && e is MouseMoveEvent)
{
return false;
}
if (e is MouseMoveEvent && !AllowUserCursorMovement) return false;
return base.Handle(e);
}