1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:37:28 +08:00

Ctrl+O for options.

This commit is contained in:
Dean Herbert 2016-11-08 19:27:37 +09:00
parent 4426a683ed
commit 97f3023cd9

View File

@ -131,6 +131,16 @@ namespace osu.Game
return true;
}
if (state.Keyboard.ControlPressed)
{
switch (args.Key)
{
case Key.O:
Options.ToggleVisibility();
return true;
}
}
return base.OnKeyDown(state, args);
}