1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 03:19:55 +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
Unverified
parent 53d7dcefe5
commit bae3a6851b
+1 -1
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;