commit 1cf040ad194c30475f1bc5177d87fc8f915d7f25
parent 2b7f1b0444c1d229aa1e15d13422cfa605e3c506
Author: QMK Bot <hello@qmk.fm>
Date: Wed, 23 Aug 2023 13:39:25 +0000
Merge remote-tracking branch 'origin/master' into develop
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git 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