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

@ -44,11 +44,11 @@ namespace osu.Game.Screens.Select
return base.OnKeyDown(e);
}
protected override bool OnKeyUp(KeyUpEvent e)
protected override void OnKeyUp(KeyUpEvent e)
{
secondaryActive = e.ShiftPressed;
updateText();
return base.OnKeyUp(e);
base.OnKeyUp(e);
}
private void updateText()