浏览代码

Allow userspace the opportunity to handle keycodes

jshuf 5 年之前
父节点
当前提交
1650ba00f1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      keyboards/cannonkeys/stm32f072/keyboard.c

+ 1 - 1
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);;
 }