1
0
Fork 0
forked from wry/wry

autocommit 2022-04-10 01:35:15 CEST

This commit is contained in:
Julian Orth 2022-04-10 01:35:15 +02:00
parent 21e2216ce5
commit befd5e99b2
22 changed files with 280 additions and 114 deletions

View file

@ -270,7 +270,8 @@ impl Xwindow {
}
pub fn map_status_changed(self: &Rc<Self>) {
match self.map_change() {
let map_change = self.map_change();
match map_change {
Change::None => return,
Change::Unmap => self.destroy_node(true),
Change::Map if self.data.info.override_redirect.get() => {
@ -300,6 +301,11 @@ impl Xwindow {
self.data.title_changed();
}
}
match map_change {
Change::Unmap => self.set_visible(false),
Change::Map => self.set_visible(true),
Change::None => {}
}
self.data.state.tree_changed();
}
}
@ -329,6 +335,10 @@ impl Node for Xwindow {
self.id.into()
}
fn close(&self) {
self.events.push(XWaylandEvent::Close(self.data.clone()));
}
fn visible(&self) -> bool {
self.surface.visible.get()
}