This commit is contained in:
Drashna Jael're
2023-03-28 00:33:36 -07:00
parent 0ed59b362d
commit 71f97e9054
2 changed files with 3 additions and 1 deletions

View File

@@ -93,7 +93,7 @@ void set_layer_color(int layer) {
bool rgb_matrix_indicators_user(void) {
if (keyboard_config.disable_layer_led) {
return;
return true;
}
switch (get_highest_layer(layer_state)) {
case 1:

View File

@@ -64,8 +64,10 @@ void raw_hid_receive(uint8_t *data, uint8_t length) {
rgb_matrix_reload_from_eeprom();
rawhid_state.rgb_control = false;
} else {
# ifdef RGB_MATRIX_CUSTOM_KB
rgb_matrix_mode_noeeprom(RGB_MATRIX_CUSTOM_oryx_webhid_effect);
rawhid_state.rgb_control = true;
# endif
}
#else
oryx_error(ORYX_ERR_RGB_MATRIX_NOT_ENABLED);