forked from forks/qmk_firmware
Allow the "00" keypad key to act like a repeating 0 when held down.
This commit is contained in:
parent
d3bc854ddf
commit
6dc48384f3
Binary file not shown.
|
@ -169,7 +169,9 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
|
|||
switch(id) {
|
||||
case KP_00:
|
||||
if (record->event.pressed) {
|
||||
return MACRO( D(KP_0), U(KP_0), D(KP_0), U(KP_0), END );
|
||||
return MACRO( D(KP_0), U(KP_0), D(KP_0), END );
|
||||
} else {
|
||||
return MACRO( U(KP_0), END );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue