From 051893858bf85976ae861363cafafa3980e37f50 Mon Sep 17 00:00:00 2001 From: Nova Date: Sun, 1 Oct 2023 01:35:52 -0400 Subject: [PATCH] fix(wayland): don't log key events :p --- src/wayland/seat.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wayland/seat.rs b/src/wayland/seat.rs index 7c80652..ea4ef3d 100644 --- a/src/wayland/seat.rs +++ b/src/wayland/seat.rs @@ -86,11 +86,11 @@ impl KeyboardInfo { 0, ); } - if pressed { - println!("Key {key} is being pressed with {state_components} modifiers"); - } else { - println!("Key {key} is being released with {state_components} modifiers"); - } + // if pressed { + // println!("Key {key} is being pressed with {state_components} modifiers"); + // } else { + // println!("Key {key} is being released with {state_components} modifiers"); + // } let wl_key_state = if pressed { KeyState::Pressed