mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
KeyCode.Parse fix
This commit is contained in:
parent
149d5f22ed
commit
40c4f202e0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue