mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-18 09:55:48 +00:00
Apply suggestions from code review
Remove unneeded breaks (few more forgotten ones). Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
parent
2a43989d30
commit
2651edc243
1 changed files with 0 additions and 2 deletions
|
@ -339,7 +339,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
unregister_code(KC_C);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case KC_PASTE:
|
||||
if (record->event.pressed) {
|
||||
register_mods(mod_config(MOD_LCTL));
|
||||
|
@ -349,7 +348,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
unregister_code(KC_V);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
case KC_CUT:
|
||||
if (record->event.pressed) {
|
||||
register_mods(mod_config(MOD_LCTL));
|
||||
|
|
Loading…
Reference in a new issue