Explorar el Código

[Bug] Fix RGB Matrix Indicators (#11308)

Drashna Jaelre hace 4 años
padre
commit
12568fb5a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      quantum/rgb_matrix.c

+ 1 - 1
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);
             }