mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Fix KC_P00 macro for ortho_5x4 layout (#3152)
This commit is contained in:
parent
710937e4ef
commit
f6a0adfe36
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
switch(keycode) {
|
switch(keycode) {
|
||||||
case KC_P00:
|
case KC_P00:
|
||||||
// types Numpad 0 twice
|
// types Numpad 0 twice
|
||||||
SEND_STRING(SS_TAP(X_P0) SS_TAP(X_P0));
|
SEND_STRING(SS_TAP(X_KP_0) SS_TAP(X_KP_0));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue