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

Fix overlay scroll back button not absorbing hover from behind

This commit is contained in:
Joseph Madamba 2023-05-02 22:24:07 -07:00
parent e42b0cc5b1
commit bede1292de
No known key found for this signature in database
GPG Key ID: 8B746C7BDDF0BD76

View File

@ -185,6 +185,8 @@ namespace osu.Game.Overlays
content.ScaleTo(1, 1000, Easing.OutElastic);
base.OnMouseUp(e);
}
protected override bool OnHover(HoverEvent e) => true;
}
}
}