Segregrate keycode at pre-process record quantum (#24194)

This commit is contained in:
フィルターペーパー 2024-08-26 08:20:30 +08:00 committed by GitHub
parent 656fea4dab
commit 11f2209087
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -246,10 +246,9 @@ uint16_t get_event_keycode(keyevent_t event, bool update_layer_cache) {
/* Get keycode, and then process pre tapping functionality */
bool pre_process_record_quantum(keyrecord_t *record) {
uint16_t keycode = get_record_keycode(record, true);
return pre_process_record_kb(keycode, record) &&
return pre_process_record_kb(get_record_keycode(record, true), record) &&
#ifdef COMBO_ENABLE
process_combo(keycode, record) &&
process_combo(get_record_keycode(record, true), record) &&
#endif
true;
}