diff options
Diffstat (limited to 'keyboards/kyria/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/kyria/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/kyria/keymaps/default/keymap.c b/keyboards/kyria/keymaps/default/keymap.c index 028d335d9..c6254c1a5 100644 --- a/keyboards/kyria/keymaps/default/keymap.c +++ b/keyboards/kyria/keymaps/default/keymap.c | |||
@@ -198,7 +198,7 @@ void oled_task_user(void) { | |||
198 | #endif | 198 | #endif |
199 | 199 | ||
200 | #ifdef ENCODER_ENABLE | 200 | #ifdef ENCODER_ENABLE |
201 | void encoder_update_user(uint8_t index, bool clockwise) { | 201 | bool encoder_update_user(uint8_t index, bool clockwise) { |
202 | if (index == 0) { | 202 | if (index == 0) { |
203 | // Volume control | 203 | // Volume control |
204 | if (clockwise) { | 204 | if (clockwise) { |
@@ -215,5 +215,6 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
215 | tap_code(KC_PGUP); | 215 | tap_code(KC_PGUP); |
216 | } | 216 | } |
217 | } | 217 | } |
218 | return true; | ||
218 | } | 219 | } |
219 | #endif | 220 | #endif |