1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 02:49:53 +08:00

Fix unbinding not working correctly

This commit is contained in:
Dean Herbert
2019-06-21 14:43:00 +09:00
Unverified
parent a6e5c6a62a
commit 666d5744cd
@@ -313,6 +313,14 @@ namespace osu.Game.Overlays.KeyBinding
Size = new Vector2(80, 20);
}
protected override bool OnMouseUp(MouseUpEvent e)
{
base.OnMouseUp(e);
// without this, the mouse up triggers a finalise (and deselection) of the current binding target.
return true;
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{