mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 02:03:20 +08:00
Avoid applying mouse down effects to menu cursor when it isn't visible
Closes #16114.
This commit is contained in:
parent
aa0813ff05
commit
eecb1ce9f5
@ -71,6 +71,8 @@ namespace osu.Game.Graphics.Cursor
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected override bool OnMouseDown(MouseDownEvent e)
|
protected override bool OnMouseDown(MouseDownEvent e)
|
||||||
|
{
|
||||||
|
if (State.Value == Visibility.Visible)
|
||||||
{
|
{
|
||||||
// only trigger animation for main mouse buttons
|
// only trigger animation for main mouse buttons
|
||||||
activeCursor.Scale = new Vector2(1);
|
activeCursor.Scale = new Vector2(1);
|
||||||
@ -85,6 +87,7 @@ namespace osu.Game.Graphics.Cursor
|
|||||||
dragRotationState = DragRotationState.DragStarted;
|
dragRotationState = DragRotationState.DragStarted;
|
||||||
positionMouseDown = e.MousePosition;
|
positionMouseDown = e.MousePosition;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return base.OnMouseDown(e);
|
return base.OnMouseDown(e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user