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:
parent
53d7dcefe5
commit
bae3a6851b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user