Added check that makes sure a code is a right modifier before considering it as one
This commit is contained in:
parent
cae269b08b
commit
01038ab54c
2 changed files with 3 additions and 0 deletions
|
@ -53,6 +53,7 @@ enum quantum_keycodes {
|
|||
QK_LSFT = 0x0200,
|
||||
QK_LALT = 0x0400,
|
||||
QK_LGUI = 0x0800,
|
||||
QK_RMODS_MIN = 0x1000,
|
||||
QK_RCTL = 0x1100,
|
||||
QK_RSFT = 0x1200,
|
||||
QK_RALT = 0x1400,
|
||||
|
|
|
@ -21,6 +21,8 @@ static void do_code16 (uint16_t code, void (*f) (uint8_t)) {
|
|||
if (code & QK_LGUI)
|
||||
f(KC_LGUI);
|
||||
|
||||
if (code < QK_RMODS_MIN) return;
|
||||
|
||||
if (code & QK_RCTL)
|
||||
f(KC_RCTL);
|
||||
if (code & QK_RSFT)
|
||||
|
|
Loading…
Reference in a new issue