aboutsummaryrefslogtreecommitdiff
path: root/keyboards/yushakobo/quick7/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/yushakobo/quick7/keymaps/default/keymap.c')
-rw-r--r--keyboards/yushakobo/quick7/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/yushakobo/quick7/keymaps/default/keymap.c b/keyboards/yushakobo/quick7/keymaps/default/keymap.c
index 3137f5853..385e89277 100644
--- a/keyboards/yushakobo/quick7/keymaps/default/keymap.c
+++ b/keyboards/yushakobo/quick7/keymaps/default/keymap.c
@@ -54,7 +54,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
54 return true; 54 return true;
55} 55}
56 56
57void encoder_update_user(uint8_t index, bool clockwise) { 57bool encoder_update_user(uint8_t index, bool clockwise) {
58 if (index == 0) { // Left encoder 58 if (index == 0) { // Left encoder
59 if (clockwise) { 59 if (clockwise) {
60 tap_code(KC_VOLU); 60 tap_code(KC_VOLU);
@@ -69,4 +69,5 @@ void encoder_update_user(uint8_t index, bool clockwise) {
69 rgblight_increase_hue_noeeprom(); 69 rgblight_increase_hue_noeeprom();
70 } 70 }
71 } 71 }
72 return true;
72} 73}