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(); }