Align dynamic tapping term keycode names (#18963)

* Align dynamic tapping term keycode names

* regen header
This commit is contained in:
Joel Challis 2022-11-05 16:58:30 +00:00 committed by GitHub
parent 5233c69bc6
commit fd4c3f46fb
Failed to generate hash of commit
5 changed files with 32 additions and 19 deletions

View file

@ -35,15 +35,15 @@ static void tapping_term_report(void) {
bool process_dynamic_tapping_term(uint16_t keycode, keyrecord_t *record) {
if (record->event.pressed) {
switch (keycode) {
case DT_PRNT:
case QK_DYNAMIC_TAPPING_TERM_PRINT:
tapping_term_report();
return false;
case DT_UP:
case QK_DYNAMIC_TAPPING_TERM_UP:
g_tapping_term += DYNAMIC_TAPPING_TERM_INCREMENT;
return false;
case DT_DOWN:
case QK_DYNAMIC_TAPPING_TERM_DOWN:
g_tapping_term -= DYNAMIC_TAPPING_TERM_INCREMENT;
return false;
}