From 0cbcf989df8298709332c66e4cf1601616e02cd0 Mon Sep 17 00:00:00 2001 From: Micah Johnston Date: Thu, 3 Dec 2020 23:05:51 -0600 Subject: [PATCH] remove print on unhandled event (produces too much spam) --- src/x11/window.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/x11/window.rs b/src/x11/window.rs index 946f240..caceaa4 100644 --- a/src/x11/window.rs +++ b/src/x11/window.rs @@ -426,9 +426,7 @@ impl Window { ); } - _ => { - println!("Unhandled event type: {:?}", event_type); - } + _ => {} } } }