mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:35:10 +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)
|
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user