Fix infinite recursion in lxxt encoder logic (#21819)

master
Joel Challis 2023-08-23 14:38:48 +01:00 committed by GitHub
parent b1fbfaaacc
commit 90d1b32f07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#if defined(ENCODER_ENABLE) #if defined(ENCODER_ENABLE)
bool encoder_update_kb(uint8_t index, bool clockwise) { 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 */ return false; /* Don't process further events if user function exists and returns false */
} }
if (index == 0) { /* First encoder */ if (index == 0) { /* First encoder */
@ -39,4 +39,4 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
return true; return true;
} }
#endif #endif