diff options
author | Greg Wright <kwip000@protonmail.com> | 2020-08-15 16:55:13 -0400 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | 568cae28ec41acc84a4a60bc3e20120e33ebee89 (patch) | |
tree | 11399d2b3865d08a73249ef6ebbdd14e952804ef /quantum/quantum_keycodes.h | |
parent | 167daa9cf8c6376a1c9b92ae7dfaa8bdac21f62a (diff) | |
download | qmk_firmware-568cae28ec41acc84a4a60bc3e20120e33ebee89.tar.gz |
#define AUTO_SHIFT_SETUP (#8441)
* #define AUTO_SHIFT_SETUP
* Clarification
Changed `#ifndef` to `#ifdef` and moved enable disable outside AUTO_SHIFT_SETUP
* AUTO_SHIFT_NO_SETUp
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 5e7c9ad33..a0a7bc340 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h @@ -123,10 +123,12 @@ enum quantum_keycodes { KC_LEAD, #endif - // Auto Shift setup +// Auto Shift setup +#ifndef AUTO_SHIFT_NO_SETUP KC_ASUP, KC_ASDN, KC_ASRP, +#endif KC_ASTG, KC_ASON, KC_ASOFF, |