diff options
author | QMK Bot <hello@qmk.fm> | 2023-08-23 13:39:25 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-08-23 13:39:25 +0000 |
commit | 1cf040ad194c30475f1bc5177d87fc8f915d7f25 (patch) | |
tree | 195280f0ed2c011de9601715ed91f0f7027ba76b | |
parent | 2b7f1b0444c1d229aa1e15d13422cfa605e3c506 (diff) | |
parent | 90d1b32f07567d658a03d05c7061da1381477fe3 (diff) |
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r-- | keyboards/lxxt/lxxt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/lxxt/lxxt.c b/keyboards/lxxt/lxxt.c index 0c4401c32b..67c9085d92 100644 --- a/keyboards/lxxt/lxxt.c +++ b/keyboards/lxxt/lxxt.c @@ -20,7 +20,7 @@ #if defined(ENCODER_ENABLE) bool encoder_update_kb(uint8_t index, bool clockwise) { - if (!encoder_update_kb(index, clockwise)) { + if (!encoder_update_user(index, clockwise)) { return false; /* Don't process further events if user function exists and returns false */ } if (index == 0) { /* First encoder */ @@ -39,4 +39,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) { return true; } -#endif
\ No newline at end of file +#endif |