Browse Source

Fix infinite recursion in checkerboards/quark_plus (#17616)

pull/17622/head
Joel Challis 1 year ago
committed by GitHub
parent
commit
a5eeee4ded
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      keyboards/checkerboards/quark_plus/quark_plus.c

+ 1
- 1
keyboards/checkerboards/quark_plus/quark_plus.c View File

@ -17,7 +17,7 @@
#include "quark_plus.h"
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_kb(index, clockwise)) { return false; }
if (!encoder_update_user(index, clockwise)) { return false; }
if (index == 1) { /* left encoder*/
if (clockwise){
tap_code(KC_WH_U);


Loading…
Cancel
Save