mirror of
https://github.com/Cian-H/qmk_firmware.git
synced 2026-08-20 21:02:52 +01:00
Tap Dance: remove qk_ prefix (#19313)
This commit is contained in:
@@ -5,11 +5,11 @@ enum {
|
||||
TD_BL = 0
|
||||
};
|
||||
|
||||
void dance_cln_finished(qk_tap_dance_state_t *state, void *user_data) {
|
||||
void dance_cln_finished(tap_dance_state_t *state, void *user_data) {
|
||||
// noop
|
||||
}
|
||||
|
||||
void dance_cln_reset(qk_tap_dance_state_t *state, void *user_data) {
|
||||
void dance_cln_reset(tap_dance_state_t *state, void *user_data) {
|
||||
switch (state->count) {
|
||||
case 1:
|
||||
// single tap - step through backlight
|
||||
@@ -30,7 +30,7 @@ void dance_cln_reset(qk_tap_dance_state_t *state, void *user_data) {
|
||||
}
|
||||
}
|
||||
|
||||
qk_tap_dance_action_t tap_dance_actions[] = {
|
||||
tap_dance_action_t tap_dance_actions[] = {
|
||||
[TD_BL] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_cln_finished, dance_cln_reset)
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user