aboutsummaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-05-29 13:21:38 -0400
committerGitHub <noreply@github.com>2017-05-29 13:21:38 -0400
commitb6c60333e48e3ed77d5e8a21a139ce9955977559 (patch)
tree85fed418d59825aba744d2d5b9e0c6710187bf41 /tmk_core
parent0c351fa98bff6a2e9d3ff30cc19d6b0782b85a62 (diff)
downloadqmk_firmware-b6c60333e48e3ed77d5e8a21a139ce9955977559.tar.gz
qmk_firmware-b6c60333e48e3ed77d5e8a21a139ce9955977559.zip
Re-enable mouse buttons
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/action.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index f73b0fe80..cffc0b9eb 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -324,9 +324,10 @@ void process_action(keyrecord_t *record, action_t action)
324 tp_buttons |= (1<<2); 324 tp_buttons |= (1<<2);
325 break; 325 break;
326 default: 326 default:
327 mousekey_on(action.key.code); 327 break;
328 mousekey_send();
329 } 328 }
329 mousekey_on(action.key.code);
330 mousekey_send();
330 } else { 331 } else {
331 switch (action.key.code) { 332 switch (action.key.code) {
332 case KC_MS_BTN1: 333 case KC_MS_BTN1:
@@ -339,9 +340,10 @@ void process_action(keyrecord_t *record, action_t action)
339 tp_buttons &= ~(1<<2); 340 tp_buttons &= ~(1<<2);
340 break; 341 break;
341 default: 342 default:
342 mousekey_off(action.key.code); 343 break;
343 mousekey_send();
344 } 344 }
345 mousekey_off(action.key.code);
346 mousekey_send();
345 } 347 }
346 break; 348 break;
347#endif 349#endif