diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs index 7f488c43be..8a72cef0c4 100644 --- a/osu.Game/OsuGame.cs +++ b/osu.Game/OsuGame.cs @@ -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); }