From 5d90b2016fcb101bd9b702eb3afd4ae9b5c2524c Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 2 Aug 2014 19:50:55 +1200 Subject: [PATCH] Change status bar hotkeys to match C&C3. --- OpenRA.Game/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index cc2ff4904f..14c5963f53 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -163,7 +163,7 @@ namespace OpenRA public Hotkey PreviousProductionTabKey = new Hotkey(Keycode.PAGEUP, Modifiers.None); public Hotkey CycleProductionBuildingsKey = new Hotkey(Keycode.TAB, Modifiers.None); - public Hotkey ToggleStatusBarsKey = new Hotkey(Keycode.INSERT, Modifiers.None); + public Hotkey ToggleStatusBarsKey = new Hotkey(Keycode.BACKQUOTE, Modifiers.Ctrl | Modifiers.Shift); public Hotkey AttackMoveKey = new Hotkey(Keycode.A, Modifiers.None); public Hotkey StopKey = new Hotkey(Keycode.S, Modifiers.None);