aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/action.c
diff options
context:
space:
mode:
authorSjB <steve@sagacity.ca>2017-01-29 12:56:20 -0500
committerSjB <steve@sagacity.ca>2017-01-29 13:01:47 -0500
commit45e0d09414c09c626d2349b6a5036a29fe03b1c6 (patch)
treef458c4ea9f8a6a23626fb9f66bd8ffdc07f174df /tmk_core/common/action.c
parent6f44ca7a59d60e20c1d35e8edc916571f5fe40ef (diff)
downloadqmk_firmware-45e0d09414c09c626d2349b6a5036a29fe03b1c6.tar.gz
qmk_firmware-45e0d09414c09c626d2349b6a5036a29fe03b1c6.zip
moved oneshot cancellation code outside of process_record.
The oneshot cancellation code do not depend on the action_tapping_process and since process_record get called via the action_tapping_process logic moved the oneshot cancellation code into the action_exec function just before the action_tapping_process call
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r--tmk_core/common/action.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index a77177240..f03670a7f 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -49,6 +49,13 @@ void action_exec(keyevent_t event)
49 49
50 keyrecord_t record = { .event = event }; 50 keyrecord_t record = { .event = event };
51 51
52#if (defined(ONESHOT_TIMEOUT) && (ONESHOT_TIMEOUT > 0))
53 if (has_oneshot_layer_timed_out()) {
54 dprintf("Oneshot layer: timeout\n");
55 clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED);
56 }
57#endif
58
52#ifndef NO_ACTION_TAPPING 59#ifndef NO_ACTION_TAPPING
53 action_tapping_process(record); 60 action_tapping_process(record);
54#else 61#else
@@ -100,15 +107,8 @@ bool process_record_quantum(keyrecord_t *record) {
100 return true; 107 return true;
101} 108}
102 109
103void process_record(keyrecord_t *record) 110void process_record(keyrecord_t *record)
104{ 111{
105#if (defined(ONESHOT_TIMEOUT) && (ONESHOT_TIMEOUT > 0))
106 if (has_oneshot_layer_timed_out()) {
107 dprintf("Oneshot layer: timeout\n");
108 clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED);
109 }
110#endif
111
112 if (IS_NOEVENT(record->event)) { return; } 112 if (IS_NOEVENT(record->event)) { return; }
113 113
114 if(!process_record_quantum(record)) 114 if(!process_record_quantum(record))