diff options
author | Drashna Jaelre <drashna@live.com> | 2020-12-29 14:14:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 22:14:03 +0000 |
commit | 12568fb5a9167d29a52f79c739f11830bde3e4be (patch) | |
tree | 95055812385bd3c27c732f06a3550f20d2a6ae65 /quantum | |
parent | 824e1cd95d61018979a9e391219a95f5a95b4a6e (diff) |
[Bug] Fix RGB Matrix Indicators (#11308)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/rgb_matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index c756857ae3..04af3ae9ec 100644 --- a/quantum/rgb_matrix.c +++ b/quantum/rgb_matrix.c @@ -403,7 +403,7 @@ void rgb_matrix_task(void) { break; case RENDERING: rgb_task_render(effect); - if (!suspend_backlight) { + if (effect) { rgb_matrix_indicators(); rgb_matrix_indicators_advanced(&rgb_effect_params); } |