autocommit 2022-04-21 18:25:34 CEST
This commit is contained in:
parent
0d414a5336
commit
32fe8b64ca
8 changed files with 133 additions and 28 deletions
|
|
@ -7,7 +7,7 @@ use {
|
|||
},
|
||||
rect::Rect,
|
||||
state::State,
|
||||
tree::{Node, SizedNode},
|
||||
tree::{Node, SizedNode, ToplevelNode},
|
||||
utils::{bitflags::BitflagsExt, errorfmt::ErrorFmt, linkedlist::LinkedList},
|
||||
wire::WlSurfaceId,
|
||||
wire_xcon::{
|
||||
|
|
@ -47,7 +47,6 @@ use {
|
|||
},
|
||||
uapi::OwnedFd,
|
||||
};
|
||||
use crate::tree::{ToplevelNode};
|
||||
|
||||
atoms! {
|
||||
Atoms;
|
||||
|
|
@ -369,7 +368,9 @@ impl Wm {
|
|||
XWaylandEvent::Activate(window) => self.activate_window(Some(&window)).await,
|
||||
XWaylandEvent::ActivateRoot => self.activate_window(None).await,
|
||||
XWaylandEvent::Close(window) => self.close_window(&window).await,
|
||||
XWaylandEvent::SetFullscreen(window, fullscreen) => self.set_fullscreen(&window, fullscreen).await,
|
||||
XWaylandEvent::SetFullscreen(window, fullscreen) => {
|
||||
self.set_fullscreen(&window, fullscreen).await
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue