mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-18 05:32:05 +00:00
Reformat with docker
This commit is contained in:
parent
a10feeba4d
commit
39ab15a52f
@ -160,7 +160,7 @@ static inline void process_tap_dance_action_on_dance_finished(tap_dance_action_t
|
||||
|
||||
bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record) {
|
||||
tap_dance_action_t *action;
|
||||
tap_dance_state_t *state;
|
||||
tap_dance_state_t * state;
|
||||
|
||||
if (!record->event.pressed) return false;
|
||||
|
||||
@ -189,7 +189,7 @@ bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record) {
|
||||
bool process_tap_dance(uint16_t keycode, keyrecord_t *record) {
|
||||
uint8_t td_index;
|
||||
tap_dance_action_t *action;
|
||||
tap_dance_state_t *state;
|
||||
tap_dance_state_t * state;
|
||||
|
||||
switch (keycode) {
|
||||
case QK_TAP_DANCE ... QK_TAP_DANCE_MAX:
|
||||
@ -225,7 +225,7 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) {
|
||||
|
||||
void tap_dance_task(void) {
|
||||
tap_dance_action_t *action;
|
||||
tap_dance_state_t *state;
|
||||
tap_dance_state_t * state;
|
||||
|
||||
if (!active_td || timer_elapsed(last_tap_time) <= GET_TAPPING_TERM(active_td, &(keyrecord_t){})) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user