diff options
| author | Nick Brassel | 2025-01-29 20:18:07 +0100 |
|---|---|---|
| committer | GitHub | 2025-01-29 20:18:07 +0100 |
| commit | d7fb12164a6623da0ab356b2d1ce1c1fa9797535 (patch) | |
| tree | 76c007ab5c75802a72285a0d6fce64cb80121a1d /quantum/quantum.c | |
| parent | cfcb8488eda38976d731c8d0ae64a57415f42443 (diff) | |
Invoke `process_record_via` after `_user`/`_kb` have a chance to handle it. (#24879)
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index d4ebd58e7f..b63300add8 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -329,13 +329,13 @@ bool process_record_quantum(keyrecord_t *record) { #ifdef HAPTIC_ENABLE process_haptic(keycode, record) && #endif -#if defined(VIA_ENABLE) - process_record_via(keycode, record) && -#endif #if defined(POINTING_DEVICE_ENABLE) && defined(POINTING_DEVICE_AUTO_MOUSE_ENABLE) process_auto_mouse(keycode, record) && #endif process_record_kb(keycode, record) && +#if defined(VIA_ENABLE) + process_record_via(keycode, record) && +#endif #if defined(SECURE_ENABLE) process_secure(keycode, record) && #endif |