1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 13:37:25 +08:00

Fix mouse focus not always working

This commit is contained in:
Dean Herbert 2022-06-07 20:45:37 +09:00
parent f2524fc3d7
commit 0561e9cc75

View File

@ -442,10 +442,10 @@ Do whatever you need to try and perceive the difference in latency, then choose
}, true);
}
protected override bool OnHover(HoverEvent e)
protected override bool OnMouseMove(MouseMoveEvent e)
{
IsActiveArea.Value = true;
return base.OnHover(e);
return base.OnMouseMove(e);
}
private double lastFrameTime;