From 3cee23fc000e6ed1d8762a26bcf822b777480371 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 8 Feb 2017 19:28:18 +0900 Subject: [PATCH] Toggle toolbar with Ctrl-T. --- osu.Game/OsuGame.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs index 64958139da..7c68dfb4bc 100644 --- a/osu.Game/OsuGame.cs +++ b/osu.Game/OsuGame.cs @@ -168,6 +168,9 @@ namespace osu.Game { switch (args.Key) { + case Key.T: + Toolbar.ToggleVisibility(); + return true; case Key.O: options.ToggleVisibility(); return true;