fix: return true in kb-level matrix indicators

This commit is contained in:
Alex Havermale 2025-07-18 11:16:45 -04:00
parent 8efefa4549
commit 7b2daf8dd8

View File

@ -209,6 +209,6 @@ bool rgb_matrix_indicators_kb(void) {
} else { } else {
rgb_matrix_set_color(CAPS_LOCK_LED_INDEX, 0, 0, 0); rgb_matrix_set_color(CAPS_LOCK_LED_INDEX, 0, 0, 0);
} }
return false; return true;
} }
#endif #endif