diff options
Diffstat (limited to 'keyboards/hub16/keymaps/ahk_companion/keymap.c')
-rw-r--r-- | keyboards/hub16/keymaps/ahk_companion/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/hub16/keymaps/ahk_companion/keymap.c b/keyboards/hub16/keymaps/ahk_companion/keymap.c index bbc2ac09a..10f641b6f 100644 --- a/keyboards/hub16/keymaps/ahk_companion/keymap.c +++ b/keyboards/hub16/keymaps/ahk_companion/keymap.c | |||
@@ -103,7 +103,7 @@ const rgblight_segment_t* const PROGMEM my_rgb_layers[] = RGBLIGHT_LAYERS_LIST( | |||
103 | my_layer5_layer | 103 | my_layer5_layer |
104 | ); | 104 | ); |
105 | 105 | ||
106 | void encoder_update_user(uint8_t index, bool clockwise) { | 106 | bool encoder_update_user(uint8_t index, bool clockwise) { |
107 | if (index == 0) { /* Left Encoder */ | 107 | if (index == 0) { /* Left Encoder */ |
108 | if (clockwise) { | 108 | if (clockwise) { |
109 | tap_code(KC_MPRV); | 109 | tap_code(KC_MPRV); |
@@ -117,6 +117,7 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
117 | tap_code(KC_VOLU); | 117 | tap_code(KC_VOLU); |
118 | } | 118 | } |
119 | } | 119 | } |
120 | return true; | ||
120 | } | 121 | } |
121 | void post_process_record_user(uint16_t keycode, keyrecord_t *record) { | 122 | void post_process_record_user(uint16_t keycode, keyrecord_t *record) { |
122 | // Allow for a preview of changes when modifying RGB | 123 | // Allow for a preview of changes when modifying RGB |