From 7b2daf8dd805bf496b7b71aa251486f13985dfd9 Mon Sep 17 00:00:00 2001 From: Alex Havermale Date: Fri, 18 Jul 2025 11:16:45 -0400 Subject: [PATCH] fix: return true in kb-level matrix indicators --- keyboards/haverworks/theseus75/theseus75.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/haverworks/theseus75/theseus75.c b/keyboards/haverworks/theseus75/theseus75.c index fc160836340..45ead4811d1 100644 --- a/keyboards/haverworks/theseus75/theseus75.c +++ b/keyboards/haverworks/theseus75/theseus75.c @@ -209,6 +209,6 @@ bool rgb_matrix_indicators_kb(void) { } else { rgb_matrix_set_color(CAPS_LOCK_LED_INDEX, 0, 0, 0); } - return false; + return true; } #endif