summaryrefslogtreecommitdiffstats
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorAlabastard-64 <96358682+Alabastard-64@users.noreply.github.com>2022-09-24 00:43:55 -0600
committerGitHub <noreply@github.com>2022-09-23 23:43:55 -0700
commit7c1797f52f74c9614615c0632ea1a2f5f11d3af6 (patch)
treee51c5c6f2d4019bd0b5a0ac6ad7199c35872899c /quantum/quantum.c
parent2318ae0433e92f773ea02bcb803de883379d98be (diff)
[Core] Pointing Device Automatic Mouse Layer (#17962)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 9f1d3502fb..ff36e14775 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -272,6 +272,9 @@ bool process_record_quantum(keyrecord_t *record) {
#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(SECURE_ENABLE)
process_secure(keycode, record) &&