aboutsummaryrefslogtreecommitdiff
path: root/keyboards/kyria/keymaps/drashna/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kyria/keymaps/drashna/keymap.c')
-rw-r--r--keyboards/kyria/keymaps/drashna/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/kyria/keymaps/drashna/keymap.c b/keyboards/kyria/keymaps/drashna/keymap.c
index ba1b03888..beefe11d7 100644
--- a/keyboards/kyria/keymaps/drashna/keymap.c
+++ b/keyboards/kyria/keymaps/drashna/keymap.c
@@ -179,7 +179,7 @@ void oled_driver_render_logo(void) {
179#endif 179#endif
180 180
181#ifdef ENCODER_ENABLE 181#ifdef ENCODER_ENABLE
182void encoder_update_user(uint8_t index, bool clockwise) { 182bool encoder_update_user(uint8_t index, bool clockwise) {
183 if (index == 0) { 183 if (index == 0) {
184 // Volume control 184 // Volume control
185 if (clockwise) { 185 if (clockwise) {
@@ -195,6 +195,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
195 tap_code(KC_PGUP); 195 tap_code(KC_PGUP);
196 } 196 }
197 } 197 }
198 return true;
198} 199}
199#endif 200#endif
200 201