diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-01-24 00:34:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-24 00:34:55 -0500 |
commit | 71137deba21bfc392d60cffb1b76216c362beb9a (patch) | |
tree | e319fccaa70088b91860917f4d512471eae9b4dd /tmk_core | |
parent | 841d7e6a1d74b1fc45575ed551132ec27353ebf3 (diff) | |
parent | 9eb8d05246fba4f46c04b8fa1884b8f2d2ee0664 (diff) |
Merge pull request #1014 from SjB/lcd_mods_status
added mods status bit to visualizer.
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 371d93f3e5..7653507928 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -188,7 +188,7 @@ MATRIX_LOOP_END: #endif #ifdef VISUALIZER_ENABLE - visualizer_update(default_layer_state, layer_state, host_keyboard_leds()); + visualizer_update(default_layer_state, layer_state, visualizer_get_mods(), host_keyboard_leds()); #endif // update LED |