diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 21425c8..2a00ff5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,6 +11,7 @@ pub mod command; pub mod dotwm; pub mod event; pub mod socket; +pub mod desktop; use dotwm::DotWM; use command::*; @@ -57,8 +58,6 @@ fn main() { let map_event = xlib::XMapEvent::from(e); if map_event.override_redirect == 0 { dotwm.add_window(map_event.window); - } else { - println!("Map event 0 :("); } } Event::Unmap(e) => { |