From 1650ba00f18c82242fdc00969ae7c017ffd566cd Mon Sep 17 00:00:00 2001 From: jshuf Date: Wed, 17 Jul 2019 14:52:46 -0400 Subject: [PATCH] Allow userspace the opportunity to handle keycodes --- keyboards/cannonkeys/stm32f072/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/cannonkeys/stm32f072/keyboard.c b/keyboards/cannonkeys/stm32f072/keyboard.c index 02c6dae18..c0c3a74fb 100644 --- a/keyboards/cannonkeys/stm32f072/keyboard.c +++ b/keyboards/cannonkeys/stm32f072/keyboard.c @@ -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);; } -- 2.39.2