From a7d10cbed7f8ba3488bc47fe993627dd1108ef73 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Tue, 9 Jun 2020 21:47:55 +0200 Subject: [PATCH] Remove unwanted print --- src/context/windows.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/context/windows.rs b/src/context/windows.rs index 667d349..ec92b57 100644 --- a/src/context/windows.rs +++ b/src/context/windows.rs @@ -160,7 +160,6 @@ extern "C" fn keypress_callback( // Send the char through the channel match string { Ok(string) => { - println!("{}", string); let event = Event::Key(KeyEvent::Char(string)); (*_self).send_channel.send(event).unwrap(); }