cargo fmt + cargo clippy

This commit is contained in:
Shawn Wallace 2025-01-09 00:08:07 -05:00
parent 47e7357eab
commit ba9c1a6a3e
4 changed files with 16 additions and 25 deletions

View file

@ -679,7 +679,7 @@ impl<C: XConnection> ServerState<C> {
return true;
};
!(win.mapped && !win.attrs.override_redirect)
!win.mapped || win.attrs.override_redirect
}
pub fn reconfigure_window(&mut self, event: x::ConfigureNotifyEvent) {