From 97f3023cd9f4b1eef9a0f48e41e54a9801425f59 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 8 Nov 2016 19:27:37 +0900 Subject: [PATCH] Ctrl+O for options. --- osu.Game/OsuGame.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) 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); }