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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index 2deafd465..555a71ebc 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -758,8 +758,8 @@ void register_code(uint8_t code) {
758 // without this, keys with the same keycode, but different 758 // without this, keys with the same keycode, but different
759 // modifiers will be reported incorrectly, see issue #1708 759 // modifiers will be reported incorrectly, see issue #1708
760 if (is_key_pressed(keyboard_report, code)) { 760 if (is_key_pressed(keyboard_report, code)) {
761 del_key(code); 761 del_key(code);
762 send_keyboard_report(); 762 send_keyboard_report();
763 } 763 }
764 add_key(code); 764 add_key(code);
765 send_keyboard_report(); 765 send_keyboard_report();