forked from mirrors/qmk_userspace
Remove unnecessary break after return from documentation (#9892)
This commit is contained in:
parent
53b0ee3f7e
commit
5bd239e1c0
4 changed files with 3 additions and 5 deletions
|
@ -454,7 +454,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
layer_state_set(layer_state); // then immediately update the layer color
|
||||
}
|
||||
}
|
||||
return false; break;
|
||||
return false;
|
||||
case RGB_MODE_FORWARD ... RGB_MODE_GRADIENT: // For any of the RGB codes (see quantum_keycodes.h, L400 for reference)
|
||||
if (record->event.pressed) { //This disables layer indication, as it's assumed that if you're changing this ... you want that disabled
|
||||
if (user_config.rgb_layer_change) { // only if this is enabled
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue