mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-12 02:54:02 +00:00
Fixed type x11 key bug #493
This commit is contained in:
parent
985c590284
commit
51ca08e484
@ -79,6 +79,11 @@ MMKeyCode keyCodeForChar(const char c) {
|
||||
if (code == NoSymbol) {
|
||||
return K_NOT_A_KEY;
|
||||
}
|
||||
|
||||
// x11 key bug
|
||||
if (c == 60) {
|
||||
code = 44;
|
||||
}
|
||||
return code;
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user