1
0
Fork 0

Fix KC_P00 macro for ortho_5x4 layout (#3152)

This commit is contained in:
noroadsleft 2018-06-09 08:30:51 -07:00 committed by Drashna Jaelre
parent 710937e4ef
commit f6a0adfe36
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch(keycode) {
case KC_P00:
// 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;
}
}