summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-12-26 23:14:07 +0900
committertmk <nobody@nowhere>2012-12-26 23:14:07 +0900
commit5af988ac3786dd7c32f9808caf9f651a8cff47f5 (patch)
treecceb83e6bc2fd7542e5741c80233fd0dbb73cb93
parentcf1eb8fbc6789776d3b3457dd5cf4ed84815e8b3 (diff)
Fix bug of FAILSAFE key clear.
http://deskthority.net/workshop-f7/tmk-keyboard-firmware-collection-t4478.html#p90022
-rw-r--r--common/keyboard.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/keyboard.c b/common/keyboard.c
index cd1ceb420c..2dee51d4b8 100644
--- a/common/keyboard.c
+++ b/common/keyboard.c
@@ -619,6 +619,10 @@ void keyboard_task(void)
Kdebug("FAIL SAFE: clear all keys(default layer).\n");
clear_keyboard();
current_layer = default_layer;
+ fn_state_bits = 0;
+ delayed_fn = (keyrecord_t){};
+ waiting_key = (keyrecord_t){};
+ NEXT(IDLE);
}
}