diff options
author | Jeremy Cowgar <jeremy@cowgar.com> | 2017-09-17 01:33:28 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-09-18 17:08:18 -0400 |
commit | abba393f57fdfb9b7abd92cc7925a605619902b2 (patch) | |
tree | 83db1c4e0aaaca008a49312b9d2d9197d1837f7b /quantum/quantum.c | |
parent | 87021371e6273258a9385a0a5ed4cfd344f9de8f (diff) | |
download | qmk_firmware-abba393f57fdfb9b7abd92cc7925a605619902b2.tar.gz |
Added Auto Shift, tap key = normal, hold key = shifted state.
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 1fccaa7d5..a1a1a9d1c 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -235,6 +235,9 @@ bool process_record_quantum(keyrecord_t *record) { #ifdef PRINTING_ENABLE process_printer(keycode, record) && #endif + #ifdef AUTO_SHIFT_ENABLE + process_auto_shift(keycode, record) && + #endif #ifdef UNICODEMAP_ENABLE process_unicode_map(keycode, record) && #endif |