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 qmk_firmware-abba393f57fdfb9b7abd92cc7925a605619902b2.zip | |
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) { | |||
| 235 | #ifdef PRINTING_ENABLE | 235 | #ifdef PRINTING_ENABLE |
| 236 | process_printer(keycode, record) && | 236 | process_printer(keycode, record) && |
| 237 | #endif | 237 | #endif |
| 238 | #ifdef AUTO_SHIFT_ENABLE | ||
| 239 | process_auto_shift(keycode, record) && | ||
| 240 | #endif | ||
| 238 | #ifdef UNICODEMAP_ENABLE | 241 | #ifdef UNICODEMAP_ENABLE |
| 239 | process_unicode_map(keycode, record) && | 242 | process_unicode_map(keycode, record) && |
| 240 | #endif | 243 | #endif |
