1
0
Fork 0

Merge pull request #63 from glowcoil/remove-x11-prints

remove print on unhandled event (produces too much spam)
This commit is contained in:
glowcoil 2020-12-03 23:08:06 -06:00 committed by GitHub
commit 6f81e28d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -426,9 +426,7 @@ impl Window {
); );
} }
_ => { _ => {}
println!("Unhandled event type: {:?}", event_type);
}
} }
} }
} }