From 69b2a82be69cd3106dda6608af616fc7ce60fe66 Mon Sep 17 00:00:00 2001 From: skullY Date: Sat, 29 Feb 2020 10:11:25 -0800 Subject: [PATCH] change the order to match the in situ assumption by keyboard maintainers --- quantum/quantum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/quantum.c b/quantum/quantum.c index d592f3cd14..a4d810f5ef 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -217,8 +217,8 @@ bool process_record_quantum(keyrecord_t *record) { #if defined(VIA_ENABLE) process_record_via(keycode, record) && #endif - process_record_user(keycode, record) && process_record_kb(keycode, record) && + process_record_user(keycode, record) && #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED) process_midi(keycode, record) && #endif