Fixing bugs

- I got messed up when i removed the backspace and mouse button 1 combos
This commit is contained in:
Victor 2024-05-24 00:37:37 -05:00
parent 90ea8d727a
commit 878f111e74
Failed to generate hash of commit
3 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ combo_t key_combos[COMBO_LENGTH] = {
// [MOUSE_BUTTON3] = COMBO(mou_btn3_combo, KC_BTN3),
// [MOUSE_BUTTON4] = COMBO(mou_btn4_combo, KC_BTN4),
// [MOUSE_BUTTON5] = COMBO(mou_btn5_combo, KC_BTN5),
[MOUSE_DRGTOG] = COMBO(mou_drg_combo, TR_DRGS)
[MOUSE_DRGTOG] = COMBO(mou_drg_combo, TR_DRGS),
[KEY_ENT] = COMBO(key_ent_combo, KC_ENT),
[KEY_TAB] = COMBO(key_tab_combo, KC_TAB),