1
0
Fork 0

fixed incorrect key combination for locking screen on macOS

This commit is contained in:
Callum Oakley 2016-09-02 09:03:39 +01:00
parent 4c67ccc81e
commit e4167c8c53
2 changed files with 5 additions and 5 deletions

View file

@ -137,11 +137,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case LOCK:
if (record->event.pressed) {
register_code(KC_RSFT);
register_code(KC_RGUI);
register_code(KC_RCTL);
register_code(KC_POWER);
} else {
unregister_code(KC_POWER);
unregister_code(KC_RGUI);
unregister_code(KC_RCTL);
unregister_code(KC_RSFT);
}
return false;