mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-02 23:23:55 +00:00
Merge pull request #494 from go-vgo/bitmap-pr
Fixed type x11 key bug #493
This commit is contained in:
commit
bfa6b232be
@ -79,6 +79,11 @@ MMKeyCode keyCodeForChar(const char c) {
|
|||||||
if (code == NoSymbol) {
|
if (code == NoSymbol) {
|
||||||
return K_NOT_A_KEY;
|
return K_NOT_A_KEY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// x11 key bug
|
||||||
|
if (c == 60) {
|
||||||
|
code = 44;
|
||||||
|
}
|
||||||
return code;
|
return code;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user