aboutsummaryrefslogtreecommitdiff
path: root/keyboards/massdrop/ctrl/keymaps/mac/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/massdrop/ctrl/keymaps/mac/keymap.c')
-rw-r--r--keyboards/massdrop/ctrl/keymaps/mac/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/massdrop/ctrl/keymaps/mac/keymap.c b/keyboards/massdrop/ctrl/keymaps/mac/keymap.c
index 79fe7388a..e5b194a34 100644
--- a/keyboards/massdrop/ctrl/keymaps/mac/keymap.c
+++ b/keyboards/massdrop/ctrl/keymaps/mac/keymap.c
@@ -102,11 +102,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
102 if (record->event.pressed) { 102 if (record->event.pressed) {
103 switch (rgb_matrix_get_flags()) { 103 switch (rgb_matrix_get_flags()) {
104 case LED_FLAG_ALL: { 104 case LED_FLAG_ALL: {
105 rgb_matrix_set_flags(LED_FLAG_KEYLIGHT); 105 rgb_matrix_set_flags(LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER);
106 rgb_matrix_set_color_all(0, 0, 0); 106 rgb_matrix_set_color_all(0, 0, 0);
107 } 107 }
108 break; 108 break;
109 case LED_FLAG_KEYLIGHT: { 109 case LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER: {
110 rgb_matrix_set_flags(LED_FLAG_UNDERGLOW); 110 rgb_matrix_set_flags(LED_FLAG_UNDERGLOW);
111 rgb_matrix_set_color_all(0, 0, 0); 111 rgb_matrix_set_color_all(0, 0, 0);
112 } 112 }