From 12568fb5a9167d29a52f79c739f11830bde3e4be Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Tue, 29 Dec 2020 14:14:03 -0800 Subject: [PATCH] [Bug] Fix RGB Matrix Indicators (#11308) --- quantum/rgb_matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index c756857ae..04af3ae9e 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); }