diff options
Diffstat (limited to 'quantum/action.c')
-rw-r--r-- | quantum/action.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/action.c b/quantum/action.c index be135f18f..95f39d23d 100644 --- a/quantum/action.c +++ b/quantum/action.c | |||
@@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
18 | #include "keycode.h" | 18 | #include "keycode.h" |
19 | #include "keyboard.h" | 19 | #include "keyboard.h" |
20 | #include "mousekey.h" | 20 | #include "mousekey.h" |
21 | #include "programmable_button.h" | ||
21 | #include "command.h" | 22 | #include "command.h" |
22 | #include "led.h" | 23 | #include "led.h" |
23 | #include "action_layer.h" | 24 | #include "action_layer.h" |
@@ -988,6 +989,10 @@ void clear_keyboard_but_mods_and_keys() { | |||
988 | mousekey_clear(); | 989 | mousekey_clear(); |
989 | mousekey_send(); | 990 | mousekey_send(); |
990 | #endif | 991 | #endif |
992 | #ifdef PROGRAMMABLE_BUTTON_ENABLE | ||
993 | programmable_button_clear(); | ||
994 | programmable_button_send(); | ||
995 | #endif | ||
991 | } | 996 | } |
992 | 997 | ||
993 | /** \brief Utilities for actions. (FIXME: Needs better description) | 998 | /** \brief Utilities for actions. (FIXME: Needs better description) |