diff options
author | dbroqua <dbroqua@mousur.org> | 2017-04-29 15:04:01 +0200 |
---|---|---|
committer | dbroqua <dbroqua@mousur.org> | 2017-04-29 15:04:01 +0200 |
commit | 7180e195e84aabf252fcadb2852644417ac1d663 (patch) | |
tree | 2a314ac51bf1399c09a394e76ba81a56c072e7d6 /tmk_core/common/action.c | |
parent | 838aae164568a1092ae269267f8d8772d3aba781 (diff) | |
parent | 584b804ee33d53102fef3b8cdd045bca4c47bf26 (diff) |
Merge branch 'master' of https://github.com/Dbroqua/qmk_firmware
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r-- | tmk_core/common/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 94de36918d..4ba1cc251a 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -140,7 +140,6 @@ void process_record(keyrecord_t *record) void process_action(keyrecord_t *record, action_t action) { - bool do_release_oneshot = false; keyevent_t event = record->event; #ifndef NO_ACTION_TAPPING uint8_t tap_count = record->tap.count; @@ -152,6 +151,7 @@ void process_action(keyrecord_t *record, action_t action) } #ifndef NO_ACTION_ONESHOT + bool do_release_oneshot = false; // notice we only clear the one shot layer if the pressed key is not a modifier. if (is_oneshot_layer_active() && event.pressed && !IS_MOD(action.key.code)) { clear_oneshot_layer_state(ONESHOT_OTHER_KEY_PRESSED); |