Make OsuButton correctly block hover events

This commit is contained in:
Dean Herbert 2019-10-28 16:20:33 +09:00
parent 50a1f06ad9
commit 6980f488dc
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ private void enabledChanged(ValueChangedEvent<bool> e)
protected override bool OnHover(HoverEvent e)
{
hover.FadeIn(200);
return base.OnHover(e);
return true;
}
protected override void OnHoverLost(HoverLostEvent e)