summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPtomerty <shua3.14@gmail.com>2017-08-24 17:23:21 -0400
committerJack Humbert <jack.humb@gmail.com>2017-09-10 22:57:26 -0400
commit68b6de60e06cf01aa1b98a817fa6613bc4e30715 (patch)
treed618ed7ae4f80b75ba8b99af86f45fb47ac1a63f
parentf10e9586df7291b4ad231b80e312ac921d0b675a (diff)
fix for toggle tap dance0.5.123
-rw-r--r--quantum/process_keycode/process_tap_dance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c
index 00870c4e7f..f1f28e0166 100644
--- a/quantum/process_keycode/process_tap_dance.c
+++ b/quantum/process_keycode/process_tap_dance.c
@@ -47,7 +47,7 @@ void qk_tap_dance_dual_role_finished (qk_tap_dance_state_t *state, void *user_da
if (state->count == 1) {
register_code16 (pair->kc);
} else if (state->count == 2) {
- layer_invert (pair->layer);
+ layer_move (pair->layer);
}
}