From fbd0a303df129e43022525fd1d39b353f845b0b3 Mon Sep 17 00:00:00 2001 From: Victor Date: Sun, 12 May 2024 20:35:22 -0500 Subject: [PATCH] It did not like the break's I put --- users/t4corun/features/combo.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/users/t4corun/features/combo.c b/users/t4corun/features/combo.c index 48c46717..b0b99ac4 100644 --- a/users/t4corun/features/combo.c +++ b/users/t4corun/features/combo.c @@ -14,7 +14,6 @@ bool get_combo_must_tap(uint16_t index, combo_t *combo) { case KEY_ENT: case KEY_TAB: return true; - break; default: return false; @@ -33,7 +32,6 @@ bool combo_should_trigger(uint16_t combo_index, combo_t *combo, uint16_t keycode case KEY_ENT: case KEY_TAB: if ( get_highest_layer(layer_state) == _SYMBOL ) return false; - break; case MOUSE_BUTTON1: case MOUSE_BUTTON2: @@ -42,7 +40,6 @@ bool combo_should_trigger(uint16_t combo_index, combo_t *combo, uint16_t keycode case MOUSE_BUTTON5: case MOUSE_DRGTOG: if ( get_highest_layer(layer_state) > _DEFAULT_LAYER_1 ) return false; - break; default: return true;