1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 09:27:32 +08:00

Make OsuButton correctly block hover events

This commit is contained in:
Dean Herbert 2019-10-28 16:20:33 +09:00
parent d33b31f0c5
commit 0a11cbf656

View File

@ -59,7 +59,7 @@ namespace osu.Game.Graphics.UserInterface
protected override bool OnHover(HoverEvent e)
{
hover.FadeIn(200);
return base.OnHover(e);
return true;
}
protected override void OnHoverLost(HoverLostEvent e)