aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common')
-rw-r--r--tmk_core/common/action.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index cffc0b9eb..84e661523 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -67,9 +67,11 @@ void action_exec(keyevent_t event)
67 67
68#if (defined(ONESHOT_TIMEOUT) && (ONESHOT_TIMEOUT > 0)) 68#if (defined(ONESHOT_TIMEOUT) && (ONESHOT_TIMEOUT > 0))
69 if (has_oneshot_layer_timed_out()) { 69 if (has_oneshot_layer_timed_out()) {
70 dprintf("Oneshot layer: timeout\n");
71 clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED); 70 clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED);
72 } 71 }
72 if (has_oneshot_mods_timed_out()) {
73 clear_oneshot_mods();
74 }
73#endif 75#endif
74 76
75#ifndef NO_ACTION_TAPPING 77#ifndef NO_ACTION_TAPPING