mirror of
https://github.com/Cian-H/qmk_firmware.git
synced 2026-07-28 09:42:10 +01:00
Tap Dance: remove qk_ prefix (#19313)
This commit is contained in:
@@ -19,14 +19,14 @@ static struct {
|
||||
} function_state = {0};
|
||||
|
||||
// Send semi-colon + enter on two taps
|
||||
void tap_dance_function_finished(qk_tap_dance_state_t *state, void *user_data) {
|
||||
void tap_dance_function_finished(tap_dance_state_t *state, void *user_data) {
|
||||
function_state.state = hold_cur_dance(state);
|
||||
switch (function_state.state) {
|
||||
case SINGLE_HOLD: layer_on(_ADJUST); break;
|
||||
}
|
||||
}
|
||||
|
||||
void tap_dance_function_reset(qk_tap_dance_state_t *state, void *user_data) {
|
||||
void tap_dance_function_reset(tap_dance_state_t *state, void *user_data) {
|
||||
switch (function_state.state) {
|
||||
case SPECIAL: reset_keyboard(); break;
|
||||
case SINGLE_HOLD: layer_off(_ADJUST); break;
|
||||
|
||||
Reference in New Issue
Block a user