소스 검색

Allow userspace the opportunity to handle keycodes

jshuf 6 년 전
부모
커밋
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);;
 }