Fix overlay scroll back button not absorbing hover from behind

This commit is contained in:
Joseph Madamba
2023-05-02 22:24:07 -07:00
parent e42b0cc5b1
commit bede1292de

View File

@ -185,6 +185,8 @@ namespace osu.Game.Overlays
content.ScaleTo(1, 1000, Easing.OutElastic);
base.OnMouseUp(e);
}
protected override bool OnHover(HoverEvent e) => true;
}
}
}