mirror of https://github.com/ppy/osu
Fix random button hover state not correctly being reset on right click
This commit is contained in:
parent
dc421bd2af
commit
94b184712d
|
@ -119,14 +119,13 @@ protected override bool OnClick(ClickEvent e)
|
|||
|
||||
protected override void OnMouseUp(MouseUpEvent e)
|
||||
{
|
||||
base.OnMouseUp(e);
|
||||
|
||||
if (e.Button == MouseButton.Right && IsHovered)
|
||||
{
|
||||
rewindSearch = true;
|
||||
TriggerClick();
|
||||
return;
|
||||
}
|
||||
|
||||
base.OnMouseUp(e);
|
||||
}
|
||||
|
||||
public override bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
||||
|
|
Loading…
Reference in New Issue