mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-06 15:44:17 -04:00
Tweaking combo settings
- made mouse button combos strict press order
This commit is contained in:
parent
b314c3ffe1
commit
3684cb65c3
1 changed files with 11 additions and 0 deletions
|
@ -40,6 +40,17 @@ 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)
|
||||
case MOUSE_BUTTON1:
|
||||
case MOUSE_BUTTON2:
|
||||
case MOUSE_BUTTON3:
|
||||
case MOUSE_BUTTON4:
|
||||
case MOUSE_BUTTON5:
|
||||
#endif //MOUSEKEY_ENABLE
|
||||
|
||||
case KEY_ESC:
|
||||
return true;
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue