Merge remote-tracking branch 'upstream/master' into difficulty-calculator

This commit is contained in:
Dean Herbert
2017-02-20 21:20:56 +09:00
2 changed files with 6 additions and 1 deletions

View File

@ -13,6 +13,11 @@ namespace osu.Game.Input
public override bool HandleInput => true;
public GlobalHotkeys()
{
RelativeSizeAxes = Axes.Both;
}
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
{
return Handler(state, args);