diff options
Diffstat (limited to 'keyboards/keebio/quefrency/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/keebio/quefrency/keymaps/via/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/quefrency/keymaps/via/keymap.c b/keyboards/keebio/quefrency/keymaps/via/keymap.c index f70a5bab9..213f7af32 100644 --- a/keyboards/keebio/quefrency/keymaps/via/keymap.c +++ b/keyboards/keebio/quefrency/keymaps/via/keymap.c | |||
@@ -34,7 +34,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
34 | ) | 34 | ) |
35 | }; | 35 | }; |
36 | 36 | ||
37 | void encoder_update_user(uint8_t index, bool clockwise) { | 37 | bool encoder_update_user(uint8_t index, bool clockwise) { |
38 | if (index == 0) { | 38 | if (index == 0) { |
39 | if (clockwise) { | 39 | if (clockwise) { |
40 | tap_code(KC_PGDN); | 40 | tap_code(KC_PGDN); |
@@ -48,4 +48,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
48 | tap_code(KC_VOLD); | 48 | tap_code(KC_VOLD); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | return true; | ||
51 | } | 52 | } |