From bca47935dcbc66c4e0f849343982da039fa106ac Mon Sep 17 00:00:00 2001 From: Florian Didron Date: Mon, 20 Oct 2025 17:03:16 +0700 Subject: [PATCH] fix(rgbmatrix): restore solid colors when recovering the right side --- keyboards/zsa/voyager/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/zsa/voyager/matrix.c b/keyboards/zsa/voyager/matrix.c index c08c9e07bc..37e15db50f 100644 --- a/keyboards/zsa/voyager/matrix.c +++ b/keyboards/zsa/voyager/matrix.c @@ -93,7 +93,7 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) { #ifdef RGB_MATRIX_ENABLE rgb_matrix_init(); // Required to recover the solid color mode - if (rgb_matrix_get_mode() == 1) { + if (rgb_matrix_get_mode() == 1 && rgb_matrix_is_enabled()) { rgb_matrix_set_color_all(255, 255, 255); } #endif