Ver código fonte

Allow the "00" keypad key to act like a repeating 0 when held down.

Olivier 9 anos atrás
pai
commit
6dc48384f3

Diferenças do arquivo suprimidas por serem muito extensas
+ 1103 - 1102
keyboard/ergodox_ez/keymaps/bepo/bepo.hex


+ 3 - 1
keyboard/ergodox_ez/keymaps/bepo/keymap.c

@@ -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;
   }