aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/rev3_5rows/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/rev3_5rows/keymaps/default/keymap.c')
-rw-r--r--keyboards/helix/rev3_5rows/keymaps/default/keymap.c3
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
124void encoder_update_user(uint8_t index, bool clockwise) { 124bool 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
140layer_state_t layer_state_set_user(layer_state_t state) { 141layer_state_t layer_state_set_user(layer_state_t state) {