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;