From 8f065c420bed3818197ac7c33118e9253be68711 Mon Sep 17 00:00:00 2001 From: Florian Didron Date: Sat, 17 Aug 2019 11:36:54 +0900 Subject: chore: move led shutdown logic in rgb_matric.c --- quantum/rgb_matrix.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'quantum') diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index f649525ccb..f4d251c99c 100644 --- a/quantum/rgb_matrix.c +++ b/quantum/rgb_matrix.c @@ -436,6 +436,9 @@ void rgb_matrix_init(void) { } void rgb_matrix_set_suspend_state(bool state) { + if (state && RGB_DISABLE_WHEN_USB_SUSPENDED) { + rgb_matrix_set_color_all(0, 0, 0); + } g_suspend_state = state; } -- cgit v1.2.3