[Keymap] removed else in numlock led if statement (#18304)

This commit is contained in:
syntax-magic 2022-09-07 11:52:32 -07:00 committed by GitHub
parent 8a0c0f72a5
commit 6321cbaadd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -320,8 +320,7 @@ void rgb_matrix_indicators_user(void) {
} }
//Numlock led //Numlock led
if (led_state.num_lock) { if (!led_state.num_lock) {
} else {
rgb_matrix_set_color(0, 145, 145, 145); rgb_matrix_set_color(0, 145, 145, 145);
} }