Browse Source

[Keyboard] fix encoder_update_user for nullbitsco/nibble (#13451)

pull/13460/head
David Luo 2 years ago
committed by GitHub
parent
commit
03a9baa44f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      keyboards/nullbitsco/nibble/keymaps/oled_status/keymap.c

+ 2
- 1
keyboards/nullbitsco/nibble/keymaps/oled_status/keymap.c View File

@ -81,7 +81,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
void encoder_update_user(uint8_t index, bool clockwise) {
bool encoder_update_user(uint8_t index, bool clockwise) {
if (clockwise) {
tap_code(KC_VOLU);
#ifdef OLED_DRIVER_ENABLE
@ -93,6 +93,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
process_record_encoder_oled(KC_VOLD);
#endif
}
return true;
}
void matrix_init_user(void) {


Loading…
Cancel
Save