mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 13:22:55 +08:00
Slight formating change.
This commit is contained in:
parent
023a5c6e4f
commit
bda0b35d84
@ -30,10 +30,7 @@ namespace osu.Game.Rulesets.Osu
|
|||||||
|
|
||||||
protected override bool Handle(UIEvent e)
|
protected override bool Handle(UIEvent e)
|
||||||
{
|
{
|
||||||
if (!AllowUserCursorMovement && e is MouseMoveEvent)
|
if (e is MouseMoveEvent && !AllowUserCursorMovement) return false;
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return base.Handle(e);
|
return base.Handle(e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user