Had to fix a preprocessor

- had MOUSELAYER_ENABLE instead of MOUSEKEY_ENABLE
This commit is contained in:
Victor 2024-04-16 22:52:28 -05:00
parent 8a48499504
commit 2e87f03d7d
Failed to generate hash of commit
2 changed files with 11 additions and 6 deletions

View file

@ -45,10 +45,15 @@ bool get_combo_must_tap(uint16_t index, combo_t *combo) {
return true;
*/
#if defined(MOUSEKEY_ENABLE)
case MOUSE_BUTTON1:
case MOUSE_BUTTON2:
case MOUSE_BUTTON4:
case MOUSE_DRGTOG:
#endif //MOUSEKEY_ENABLE
case KB_TAB:
case KB_BSPC:
default:
return false;