Set input focus on windows without WM_HINTS input flag

Also miscellaneous formatting things.
Part of #8
This commit is contained in:
Shawn Wallace 2024-05-20 01:26:06 -04:00
parent 38e58bd11d
commit 2317ebb842
4 changed files with 99 additions and 24 deletions

View file

@ -2,8 +2,8 @@
pub mod client {
use wayland_client::{self, protocol::*};
pub mod __interfaces {
use wayland_client::protocol::__interfaces::*;
use wayland_client::backend as wayland_backend;
use wayland_client::protocol::__interfaces::*;
wayland_scanner::generate_interfaces!("src/drm.xml");
}
use self::__interfaces::*;
@ -11,9 +11,8 @@ pub mod client {
}
pub mod server {
use wayland_server::{self, protocol::*};
pub use super::client::__interfaces;
use self::__interfaces::*;
pub use super::client::__interfaces;
use wayland_server::{self, protocol::*};
wayland_scanner::generate_server_code!("src/drm.xml");
}