aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r--tmk_core/common/action.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index a3830abbf..ef01a7177 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -1035,6 +1035,10 @@ void clear_keyboard_but_mods(void) {
1035 * FIXME: Needs documentation. 1035 * FIXME: Needs documentation.
1036 */ 1036 */
1037void clear_keyboard_but_mods_and_keys() { 1037void clear_keyboard_but_mods_and_keys() {
1038#ifdef EXTRAKEY_ENABLE
1039 host_system_send(0);
1040 host_consumer_send(0);
1041#endif
1038 clear_weak_mods(); 1042 clear_weak_mods();
1039 clear_macro_mods(); 1043 clear_macro_mods();
1040 send_keyboard_report(); 1044 send_keyboard_report();
@@ -1042,10 +1046,6 @@ void clear_keyboard_but_mods_and_keys() {
1042 mousekey_clear(); 1046 mousekey_clear();
1043 mousekey_send(); 1047 mousekey_send();
1044#endif 1048#endif
1045#ifdef EXTRAKEY_ENABLE
1046 host_system_send(0);
1047 host_consumer_send(0);
1048#endif
1049} 1049}
1050 1050
1051/** \brief Utilities for actions. (FIXME: Needs better description) 1051/** \brief Utilities for actions. (FIXME: Needs better description)