diff options
Diffstat (limited to 'keyboards/helix/rev3_5rows/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/helix/rev3_5rows/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/helix/rev3_5rows/keymaps/default/keymap.c b/keyboards/helix/rev3_5rows/keymaps/default/keymap.c index 18b559137..6dde7fed5 100644 --- a/keyboards/helix/rev3_5rows/keymaps/default/keymap.c +++ b/keyboards/helix/rev3_5rows/keymaps/default/keymap.c | |||
@@ -121,7 +121,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
121 | 121 | ||
122 | }; | 122 | }; |
123 | 123 | ||
124 | void encoder_update_user(uint8_t index, bool clockwise) { | 124 | bool encoder_update_user(uint8_t index, bool clockwise) { |
125 | if (index == 0) { /* Left side encoder */ | 125 | if (index == 0) { /* Left side encoder */ |
126 | if (clockwise) { | 126 | if (clockwise) { |
127 | tap_code(KC_PGDN); | 127 | tap_code(KC_PGDN); |
@@ -135,6 +135,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
135 | tap_code(KC_UP); | 135 | tap_code(KC_UP); |
136 | } | 136 | } |
137 | } | 137 | } |
138 | return true; | ||
138 | } | 139 | } |
139 | 140 | ||
140 | layer_state_t layer_state_set_user(layer_state_t state) { | 141 | layer_state_t layer_state_set_user(layer_state_t state) { |