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