From 0f972fc8536648035c7b2cfe106c933f949f41e2 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 4 Nov 2013 21:23:17 +1300 Subject: [PATCH] Remove forced upper case hotkey display. The default SDL2 names have fixed capitalisation. --- OpenRA.FileFormats/Hotkey.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.FileFormats/Hotkey.cs b/OpenRA.FileFormats/Hotkey.cs index 691a78829e..da14dab10f 100755 --- a/OpenRA.FileFormats/Hotkey.cs +++ b/OpenRA.FileFormats/Hotkey.cs @@ -78,7 +78,7 @@ namespace OpenRA public string DisplayString() { - var ret = KeycodeExts.DisplayString(Key).ToUpper(); + var ret = KeycodeExts.DisplayString(Key); if (Modifiers.HasModifier(Modifiers.Shift)) ret = "Shift + " + ret;