|
|
|
@ -111,14 +111,14 @@ void TapDance::actionKeys(uint8_t tap_count, ActionType tap_dance_action, uint8_
|
|
|
|
|
break;
|
|
|
|
|
case Interrupt:
|
|
|
|
|
case Timeout:
|
|
|
|
|
handle_keyswitch_event(key, last_tap_dance_row_, last_tap_dance_col_, IS_PRESSED | INJECTED);
|
|
|
|
|
handleKeyswitchEvent(key, last_tap_dance_row_, last_tap_dance_col_, IS_PRESSED | INJECTED);
|
|
|
|
|
break;
|
|
|
|
|
case Hold:
|
|
|
|
|
handle_keyswitch_event(key, last_tap_dance_row_, last_tap_dance_col_, IS_PRESSED | WAS_PRESSED | INJECTED);
|
|
|
|
|
handleKeyswitchEvent(key, last_tap_dance_row_, last_tap_dance_col_, IS_PRESSED | WAS_PRESSED | INJECTED);
|
|
|
|
|
break;
|
|
|
|
|
case Release:
|
|
|
|
|
Keyboard.sendReport();
|
|
|
|
|
handle_keyswitch_event(key, last_tap_dance_row_, last_tap_dance_col_, WAS_PRESSED | INJECTED);
|
|
|
|
|
handleKeyswitchEvent(key, last_tap_dance_row_, last_tap_dance_col_, WAS_PRESSED | INJECTED);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|