1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 06:12:56 +08:00

Make OsuButton correctly block hover events (#6636)

Make OsuButton correctly block hover events
This commit is contained in:
Dean Herbert 2019-10-30 12:38:16 +09:00 committed by GitHub
commit dbee63c1a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)