diff --git a/CHANGELOG.md b/CHANGELOG.md
index c7615341..ea7641d7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,6 @@
### master
- backspace was previously bind to back if not consumed by input. This is removed
+- fix unsignificative events interpreted as previous event repetition
### v0.11.5 - 2020-01-10
diff --git a/src/commands.rs b/src/commands.rs
index 45876379..9a943367 100644
--- a/src/commands.rs
+++ b/src/commands.rs
@@ -151,6 +151,7 @@ impl Command {
state: &Box,
) {
debug!("add_event {:?}", event);
+ self.action = Action::Unparsed;
match event {
Event::Click(x, y) => {
if !input_field.apply_event(&event) {