aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dumbo/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dumbo/keymaps/default/keymap.c')
-rw-r--r--keyboards/dumbo/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/dumbo/keymaps/default/keymap.c b/keyboards/dumbo/keymaps/default/keymap.c
index dfa6a52b9..63b993603 100644
--- a/keyboards/dumbo/keymaps/default/keymap.c
+++ b/keyboards/dumbo/keymaps/default/keymap.c
@@ -189,7 +189,7 @@ void oled_task_user(void) {
189#endif 189#endif
190 190
191#ifdef ENCODER_ENABLE 191#ifdef ENCODER_ENABLE
192void encoder_update_user(uint8_t index, bool clockwise) { 192bool encoder_update_user(uint8_t index, bool clockwise) {
193 if (index == 0) { 193 if (index == 0) {
194 // master side thumb encoder 194 // master side thumb encoder
195 // Volume control 195 // Volume control
@@ -226,5 +226,6 @@ void encoder_update_user(uint8_t index, bool clockwise) {
226 tap_code(KC_HOME); 226 tap_code(KC_HOME);
227 } 227 }
228 } 228 }
229 return true;
229} 230}
230#endif 231#endif