1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

KeyCode.Parse fix

This commit is contained in:
Brian Fiete 2025-03-31 16:40:32 -04:00
parent 149d5f22ed
commit 40c4f202e0

View file

@ -144,7 +144,7 @@ namespace Beefy.widgets
return (KeyCode)c;
if ((c >= '0') && (c <= '9'))
return (KeyCode)c;
if ((c >= 'a') && (c <= 'a'))
if ((c >= 'a') && (c <= 'z'))
return (KeyCode)(c.ToUpper);
if (c == '[')
return (KeyCode)LBracket;