]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Allow userspace the opportunity to handle keycodes
authorjshuf <jshuf@puppyfish.com>
Wed, 17 Jul 2019 18:52:46 +0000 (14:52 -0400)
committernoroadsleft <18669334+noroadsleft@users.noreply.github.com>
Wed, 17 Jul 2019 19:38:08 +0000 (12:38 -0700)
keyboards/cannonkeys/stm32f072/keyboard.c

index 02c6dae18b27eb8669d3c3686a50e6dc2988404e..c0c3a74fb9bb41a8c4d18c2b89178d410e11e135 100644 (file)
@@ -162,7 +162,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
        }
     #endif //DYNAMIC_KEYMAP_ENABLE
 
-  return true;
+  return process_record_user(keycode, record);;
 }