mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Block hover events behind logo even if action is null
This commit is contained in:
@ -393,7 +393,7 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
protected override bool OnHover(HoverEvent e)
|
protected override bool OnHover(HoverEvent e)
|
||||||
{
|
{
|
||||||
if (Action == null) return false;
|
if (Action == null) return true;
|
||||||
|
|
||||||
logoHoverContainer.ScaleTo(1.1f, 500, Easing.OutElastic);
|
logoHoverContainer.ScaleTo(1.1f, 500, Easing.OutElastic);
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user