Add another retro tapping key

This commit is contained in:
Robert O'Farrell 2025-09-23 13:01:59 +10:00 committed by GitHub
commit 8a0f94f99f
Failed to generate hash of commit

View file

@ -73,6 +73,8 @@ bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case SYM_BSPC:
return true;
case MEH_ENT:
return true;
default:
return false;
}