mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 15:14:17 -04:00
Tuning and bug fixes
- Fixed bug that releasing double tap and bracket holds put another set of brackets or double taps - Added delay for NUM_0 Layer Tap
This commit is contained in:
parent
f57e5fedf7
commit
7c923a5c4a
2 changed files with 10 additions and 4 deletions
|
@ -1,10 +1,16 @@
|
|||
#include "tapping.h"
|
||||
|
||||
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
|
||||
|
||||
switch (keycode) {
|
||||
|
||||
case NAV_0:
|
||||
return TAPPING_TERM + 60;
|
||||
|
||||
default:
|
||||
//uprintf("tapping term: %d \n", TAPPING_TERM);
|
||||
return TAPPING_TERM;
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue