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

Block hover events behind logo even if action is null

This commit is contained in:
Joseph Madamba 2023-01-07 11:15:51 -08:00
parent 53d7dcefe5
commit bae3a6851b

View File

@ -393,7 +393,7 @@ namespace osu.Game.Screens.Menu
protected override bool OnHover(HoverEvent e)
{
if (Action == null) return false;
if (Action == null) return true;
logoHoverContainer.ScaleTo(1.1f, 500, Easing.OutElastic);
return true;