aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r--tmk_core/common/action.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index ef01a7177..e4a97e0bc 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -47,10 +47,6 @@ int tp_buttons;
47int retro_tapping_counter = 0; 47int retro_tapping_counter = 0;
48#endif 48#endif
49 49
50#ifdef FAUXCLICKY_ENABLE
51# include "fauxclicky.h"
52#endif
53
54#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY 50#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY
55__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) { return false; } 51__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) { return false; }
56#endif 52#endif
@@ -80,16 +76,6 @@ void action_exec(keyevent_t event) {
80#endif 76#endif
81 } 77 }
82 78
83#ifdef FAUXCLICKY_ENABLE
84 if (IS_PRESSED(event)) {
85 FAUXCLICKY_ACTION_PRESS;
86 }
87 if (IS_RELEASED(event)) {
88 FAUXCLICKY_ACTION_RELEASE;
89 }
90 fauxclicky_check();
91#endif
92
93#ifdef SWAP_HANDS_ENABLE 79#ifdef SWAP_HANDS_ENABLE
94 if (!IS_NOEVENT(event)) { 80 if (!IS_NOEVENT(event)) {
95 process_hand_swap(&event); 81 process_hand_swap(&event);