Keyboard shortcut fix. (#226)

This commit is contained in:
İsmail Yılmaz 2025-01-23 02:47:44 +03:00 committed by GitHub
parent 50bbdd6ffd
commit dfd7ff70b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -301,7 +301,7 @@ dword ParseKeyDesc(CParser& p)
ONCELOCK {
extern Tuple<dword, const char *> KeyNames__[];
for(int i = 0; KeyNames__[i].a; i++) {
String n = KeyNames__[i].b;
String n = Filter(KeyNames__[i].b, CharFilterNoSpace);
int q = n.Find('\v');
if(q)
n = n.Mid(q + 1);