diff options
Diffstat (limited to 'keyboards/keebio/foldkb/keymaps/via/keymap.c')
-rw-r--r-- | keyboards/keebio/foldkb/keymaps/via/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/foldkb/keymaps/via/keymap.c b/keyboards/keebio/foldkb/keymaps/via/keymap.c index f7f19ea7c..d3e3a95bf 100644 --- a/keyboards/keebio/foldkb/keymaps/via/keymap.c +++ b/keyboards/keebio/foldkb/keymaps/via/keymap.c | |||
@@ -47,7 +47,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
47 | ) | 47 | ) |
48 | }; | 48 | }; |
49 | 49 | ||
50 | void encoder_update_user(uint8_t index, bool clockwise) { | 50 | bool encoder_update_user(uint8_t index, bool clockwise) { |
51 | if (index == 0) { | 51 | if (index == 0) { |
52 | if (clockwise) { | 52 | if (clockwise) { |
53 | tap_code(KC_VOLU); | 53 | tap_code(KC_VOLU); |
@@ -61,4 +61,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
61 | tap_code(KC_PGUP); | 61 | tap_code(KC_PGUP); |
62 | } | 62 | } |
63 | } | 63 | } |
64 | return true; | ||
64 | } | 65 | } |