From e89eff209350cfaf99a68bd56647c4ff159514ca Mon Sep 17 00:00:00 2001 From: cjkenned Date: Tue, 12 Jul 2016 21:02:36 -0600 Subject: [PATCH] Remove assert statement from window. --- ports/glutin/window.rs | 1 - 1 file changed, 1 deletion(-) 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)); }