diff options
Diffstat (limited to 'keyboards/yushakobo/quick7/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/yushakobo/quick7/keymaps/via/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/yushakobo/quick7/keymaps/via/keymap.c b/keyboards/yushakobo/quick7/keymaps/via/keymap.c index 9c64042bc..122decc92 100644 --- a/keyboards/yushakobo/quick7/keymaps/via/keymap.c +++ b/keyboards/yushakobo/quick7/keymaps/via/keymap.c | |||
@@ -66,7 +66,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
66 | return true; | 66 | return true; |
67 | } | 67 | } |
68 | 68 | ||
69 | void encoder_update_user(uint8_t index, bool clockwise) { | 69 | bool encoder_update_user(uint8_t index, bool clockwise) { |
70 | if (index == 0) { // Left encoder | 70 | if (index == 0) { // Left encoder |
71 | if (clockwise) { | 71 | if (clockwise) { |
72 | tap_code(KC_VOLU); | 72 | tap_code(KC_VOLU); |
@@ -81,4 +81,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
81 | rgblight_increase_hue_noeeprom(); | 81 | rgblight_increase_hue_noeeprom(); |
82 | } | 82 | } |
83 | } | 83 | } |
84 | return true; | ||
84 | } | 85 | } |