mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
fix wrong control flow on hover lost
This commit is contained in:
@ -29,12 +29,13 @@ namespace osu.Game.Screens.Play.PlayerSettings
|
|||||||
|
|
||||||
protected override void OnHoverLost(HoverLostEvent e)
|
protected override void OnHoverLost(HoverLostEvent e)
|
||||||
{
|
{
|
||||||
if (hoverExpandEvent == null) return;
|
if (hoverExpandEvent != null)
|
||||||
|
{
|
||||||
|
hoverExpandEvent?.Cancel();
|
||||||
|
hoverExpandEvent = null;
|
||||||
|
|
||||||
hoverExpandEvent?.Cancel();
|
Expanded.Value = false;
|
||||||
hoverExpandEvent = null;
|
}
|
||||||
|
|
||||||
Expanded.Value = false;
|
|
||||||
|
|
||||||
base.OnHoverLost(e);
|
base.OnHoverLost(e);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user