1
0
Fork 0

Remove unneeded tap delays #201

This commit is contained in:
Jun Wako 2015-04-23 20:15:35 +09:00
parent 3f32b22478
commit 1f4a22ee81
2 changed files with 13 additions and 8 deletions

View file

@ -518,7 +518,12 @@ bool is_tap_key(keypos_t key)
case ACT_RMODS_TAP:
case ACT_LAYER_TAP:
case ACT_LAYER_TAP_EXT:
return true;
switch (action.layer_tap.code) {
case 0x00 ... 0xdf:
case OP_TAP_TOGGLE:
return true;
}
return false;
case ACT_MACRO:
case ACT_FUNCTION:
if (action.func.opt & FUNC_TAP) { return true; }