Remove forced upper case hotkey display.

The default SDL2 names have fixed capitalisation.
This commit is contained in:
Paul Chote
2013-11-04 21:23:17 +13:00
parent db83db5b51
commit 0f972fc853

View File

@@ -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;