mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +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)
|
||||
{
|
||||
if (hoverExpandEvent == null) return;
|
||||
if (hoverExpandEvent != null)
|
||||
{
|
||||
hoverExpandEvent?.Cancel();
|
||||
hoverExpandEvent = null;
|
||||
|
||||
hoverExpandEvent?.Cancel();
|
||||
hoverExpandEvent = null;
|
||||
|
||||
Expanded.Value = false;
|
||||
Expanded.Value = false;
|
||||
}
|
||||
|
||||
base.OnHoverLost(e);
|
||||
}
|
||||
|
Reference in New Issue
Block a user