1
0
Fork 0

Remove FAUXCLICKY feature (deprecated) (#11829)

This commit is contained in:
Drashna Jael're 2021-02-09 09:49:05 -08:00 committed by GitHub
parent 738bd263c1
commit 7161d65070
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
483 changed files with 48 additions and 750 deletions

View file

@ -47,10 +47,6 @@ int tp_buttons;
int retro_tapping_counter = 0;
#endif
#ifdef FAUXCLICKY_ENABLE
# include "fauxclicky.h"
#endif
#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY
__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) { return false; }
#endif
@ -80,16 +76,6 @@ void action_exec(keyevent_t event) {
#endif
}
#ifdef FAUXCLICKY_ENABLE
if (IS_PRESSED(event)) {
FAUXCLICKY_ACTION_PRESS;
}
if (IS_RELEASED(event)) {
FAUXCLICKY_ACTION_RELEASE;
}
fauxclicky_check();
#endif
#ifdef SWAP_HANDS_ENABLE
if (!IS_NOEVENT(event)) {
process_hand_swap(&event);