diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 122f735..02f83c8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,6 +33,7 @@ use xcb::{ Connection as RawConnection, Event, Extension, Xid, }; +pub mod buttons; pub mod clients; pub mod config; pub mod conn_info; @@ -143,7 +144,7 @@ impl<'a> WM<'a> { return; } - if dbg!(e.r#type()) == dbg!(self.conn.atoms.net_wm_state) { + if e.r#type() == self.conn.atoms.net_wm_state { let x::ClientMessageData::Data32(data) = e.data() else { unreachable!(); }; |