Apply input method signature refactorings

This commit is contained in:
smoogipoo
2020-01-20 19:35:37 +09:00
parent fc331e7752
commit 40f502c6d1
4 changed files with 10 additions and 9 deletions

View File

@ -216,12 +216,15 @@ namespace osu.Game.Overlays.KeyBinding
return true;
}
protected override bool OnKeyUp(KeyUpEvent e)
protected override void OnKeyUp(KeyUpEvent e)
{
if (!HasFocus) return base.OnKeyUp(e);
if (!HasFocus)
{
base.OnKeyUp(e);
return;
}
finalise();
return true;
}
protected override bool OnJoystickPress(JoystickPressEvent e)