1
0
Fork 0

Apply suggestions from code review

Remove unneeded breaks.

Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
Josef Adamčík 2020-05-18 12:43:35 +02:00 committed by GitHub
parent 2f5521cd48
commit 2a43989d30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,7 +231,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
update_tri_layer(_LOWER, _RAISE, _ADJUST); update_tri_layer(_LOWER, _RAISE, _ADJUST);
} }
return false; return false;
break;
case KC_RAISE: case KC_RAISE:
if (record->event.pressed) { if (record->event.pressed) {
layer_on(_RAISE); layer_on(_RAISE);
@ -241,7 +240,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
update_tri_layer(_LOWER, _RAISE, _ADJUST); update_tri_layer(_LOWER, _RAISE, _ADJUST);
} }
return false; return false;
break;
case KC_ADJUST: case KC_ADJUST:
if (record->event.pressed) { if (record->event.pressed) {
layer_on(_ADJUST); layer_on(_ADJUST);
@ -249,7 +247,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
layer_off(_ADJUST); layer_off(_ADJUST);
} }
return false; return false;
break;
case KC_PRVWD: case KC_PRVWD:
if (record->event.pressed) { if (record->event.pressed) {
if (keymap_config.swap_lctl_lgui) { if (keymap_config.swap_lctl_lgui) {
@ -372,7 +369,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
unregister_code(KC_Z); unregister_code(KC_Z);
} }
return false; return false;
break;
} }
return true; return true;
} }