aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ports/glutin/window.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs
index 00bd7ceff0a..54fd6e56b49 100644
--- a/ports/glutin/window.rs
+++ b/ports/glutin/window.rs
@@ -242,7 +242,6 @@ impl Window {
fn handle_window_event(&self, event: glutin::Event) -> bool {
match event {
Event::ReceivedCharacter(ch) => {
- assert!(self.pending_key_event_char.get().is_none());
if !ch.is_control() {
self.pending_key_event_char.set(Some(ch));
}