diff options
author | Ofer Plesser <plesserofer@gmail.com> | 2016-12-23 21:51:11 +0200 |
---|---|---|
committer | Ofer Plesser <plesserofer@gmail.com> | 2016-12-23 21:51:11 +0200 |
commit | 01038ab54ca6c2858ea9e856c717a1129ffe4156 (patch) | |
tree | 4a3205a41c05fef7f977b27c23af412764064785 /quantum/keymap.h | |
parent | cae269b08b642b07ee06dec7120a784a3c3d7aab (diff) |
Added check that makes sure a code is a right modifier before considering it as one
Diffstat (limited to 'quantum/keymap.h')
-rw-r--r-- | quantum/keymap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/keymap.h b/quantum/keymap.h index ae56d16c75..745c552799 100644 --- a/quantum/keymap.h +++ b/quantum/keymap.h @@ -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, |