From 0710b92d683eb34282746d11306bce732be94564 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 30 Jan 2023 21:22:31 +0100 Subject: [PATCH] remove debug print --- src/event/producer.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/event/producer.rs b/src/event/producer.rs index 08f4621..2f81b11 100644 --- a/src/event/producer.rs +++ b/src/event/producer.rs @@ -179,12 +179,9 @@ pub fn run( app.add_client(client.handle, client.pos); } - let mut i = 0; while app.running { match queue.blocking_dispatch(&mut app) { - Ok(_) => { - eprint!("{}\r", {i+=1; i}); - }, + Ok(_) => { }, Err(DispatchError::Backend(WaylandError::Io(e))) => { eprintln!("Wayland Error: {}", e); thread::sleep(Duration::from_millis(500));