diff options
author | Chris Merrill <cmerrill@mit.edu> | 2020-11-09 16:33:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 13:33:40 -0800 |
commit | 16fe4b8b77c2eee7fb1598063d2903086bd03ca4 (patch) | |
tree | 3d428997fee42cb52015bdb3304d47b9b14a35e9 /keyboards/massdrop/alt/keymaps/default | |
parent | 84ca67f1583ec1cc3689bd92a602bd8fdc6ad2a6 (diff) | |
download | qmk_firmware-16fe4b8b77c2eee7fb1598063d2903086bd03ca4.tar.gz qmk_firmware-16fe4b8b77c2eee7fb1598063d2903086bd03ca4.zip |
Update massdrop/alt and arm_atsam/led_matrix to fix #10813 (#10818)
* Update massdrop/alt keyboard to fix Caps Lock LED flickering.
* Fix Caps-lock LED during underglow-only for massdrop/ctrl
* Update keyboards/massdrop/ctrl/keymaps/default/keymap.c
Diffstat (limited to 'keyboards/massdrop/alt/keymaps/default')
-rw-r--r-- | keyboards/massdrop/alt/keymaps/default/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/massdrop/alt/keymaps/default/keymap.c b/keyboards/massdrop/alt/keymaps/default/keymap.c index 0d3e7ccb7a..df8d406988 100644 --- a/keyboards/massdrop/alt/keymaps/default/keymap.c +++ b/keyboards/massdrop/alt/keymaps/default/keymap.c @@ -87,11 +87,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { if (record->event.pressed) { switch (rgb_matrix_get_flags()) { case LED_FLAG_ALL: { - rgb_matrix_set_flags(LED_FLAG_KEYLIGHT); + rgb_matrix_set_flags(LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR); rgb_matrix_set_color_all(0, 0, 0); } break; - case LED_FLAG_KEYLIGHT: { + case (LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR): { rgb_matrix_set_flags(LED_FLAG_UNDERGLOW); rgb_matrix_set_color_all(0, 0, 0); } |