Update in line with framework

This commit is contained in:
Dean Herbert
2017-05-30 16:33:26 +09:00
parent 03ac700838
commit 8544b45443
13 changed files with 44 additions and 27 deletions

View File

@ -45,11 +45,10 @@ namespace osu.Game.Graphics.UserInterface
BorderColour = colour.Yellow;
}
protected override bool OnFocus(InputState state)
protected override void OnFocus(InputState state)
{
BorderThickness = 3;
return base.OnFocus(state);
base.OnFocus(state);
}
protected override void OnFocusLost(InputState state)