summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2020-12-29 14:14:03 -0800
committerGitHub <noreply@github.com>2020-12-29 22:14:03 +0000
commit12568fb5a9167d29a52f79c739f11830bde3e4be (patch)
tree95055812385bd3c27c732f06a3550f20d2a6ae65
parent824e1cd95d61018979a9e391219a95f5a95b4a6e (diff)
[Bug] Fix RGB Matrix Indicators (#11308)0.11.26
-rw-r--r--quantum/rgb_matrix.c2
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);
}