Pārlūkot izejas kodu

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

Olivier 9 gadi atpakaļ
vecāks
revīzija
6dc48384f3

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 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;
   }