diff options
Diffstat (limited to 'keyboards/keebio/iris/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/keebio/iris/keymaps/default/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/keebio/iris/keymaps/default/keymap.c b/keyboards/keebio/iris/keymaps/default/keymap.c index 3102dd2da..5fda9fb91 100644 --- a/keyboards/keebio/iris/keymaps/default/keymap.c +++ b/keyboards/keebio/iris/keymaps/default/keymap.c | |||
@@ -112,7 +112,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
112 | return true; | 112 | return true; |
113 | } | 113 | } |
114 | 114 | ||
115 | void encoder_update_user(uint8_t index, bool clockwise) { | 115 | bool encoder_update_user(uint8_t index, bool clockwise) { |
116 | if (index == 0) { | 116 | if (index == 0) { |
117 | if (clockwise) { | 117 | if (clockwise) { |
118 | tap_code(KC_VOLU); | 118 | tap_code(KC_VOLU); |
@@ -127,4 +127,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
127 | tap_code(KC_PGUP); | 127 | tap_code(KC_PGUP); |
128 | } | 128 | } |
129 | } | 129 | } |
130 | return true; | ||
130 | } | 131 | } |