LSpec: KC_GRV -> KC_EQL
This commit is contained in:
parent
abe8bfa3a6
commit
973ea2f917
|
@ -292,13 +292,13 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
|
||||||
case LSpec:
|
case LSpec:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
if (record->tap.count && !record->tap.interrupted) {
|
if (record->tap.count && !record->tap.interrupted) {
|
||||||
register_code(KC_GRV);
|
register_code(KC_EQL);
|
||||||
} else {
|
} else {
|
||||||
layer_on(SPEC);
|
layer_on(SPEC);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(record->tap.count && !record->tap.interrupted) {
|
if(record->tap.count && !record->tap.interrupted) {
|
||||||
unregister_code(KC_GRV);
|
unregister_code(KC_EQL);
|
||||||
} else {
|
} else {
|
||||||
layer_off(SPEC);
|
layer_off(SPEC);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue