More combo tuning

- adjusting mappings again
- removed the order presses for all combo
- made mouse 3,4,5 must tap
This commit is contained in:
Victor 2024-04-18 00:00:42 -05:00
parent fde5444ade
commit 31361d209e
Failed to generate hash of commit
2 changed files with 18 additions and 23 deletions

View file

@ -17,12 +17,13 @@ bool get_combo_must_tap(uint16_t index, combo_t *combo) {
switch (index) {
#if defined(MOUSEKEY_ENABLE)
case MOUSE_BUTTON3:
case MOUSE_BUTTON4:
case MOUSE_BUTTON5:
case MOUSE_DRGTOG:
#endif //MOUSEKEY_ENABLE
case KEY_ESC:
case KEY_TAB:
case KEY_ENT:
case KEY_BWRD:
return true;
@ -40,16 +41,12 @@ bool get_combo_must_press_in_order(uint16_t combo_index, combo_t *combo) {
* return false means they do not have to be pressed in order
* */
#if defined(MOUSEKEY_ENABLE)
#if defined(MOUSEKEY_ENABLE2222)
case MOUSE_BUTTON1:
case MOUSE_BUTTON2:
case MOUSE_BUTTON3:
case MOUSE_BUTTON4:
case MOUSE_BUTTON5:
#endif //MOUSEKEY_ENABLE
case KEY_ESC:
return true;
#endif //MOUSEKEY_ENABLE
default:
return false;