1
0
Fork 0

Added support for timing out combos if a key as been pressed for longer than COMBO_TERM

This commit is contained in:
Ofer Plesser 2016-12-10 16:11:59 +02:00
parent eac8fa7999
commit b6bf4e0dce
3 changed files with 103 additions and 33 deletions

View file

@ -509,6 +509,11 @@ void matrix_scan_quantum() {
#ifdef TAP_DANCE_ENABLE
matrix_scan_tap_dance();
#endif
#ifdef COMBO_ENABLE
matrix_scan_combo();
#endif
matrix_scan_kb();
}