Remove unwanted print

This commit is contained in:
Federico Terzi 2020-06-09 21:47:55 +02:00
parent e98daedd6b
commit a7d10cbed7

View File

@ -160,7 +160,6 @@ extern "C" fn keypress_callback(
// Send the char through the channel // Send the char through the channel
match string { match string {
Ok(string) => { Ok(string) => {
println!("{}", string);
let event = Event::Key(KeyEvent::Char(string)); let event = Event::Key(KeyEvent::Char(string));
(*_self).send_channel.send(event).unwrap(); (*_self).send_channel.send(event).unwrap();
} }