1
0
Fork 0
forked from wry/wry

xwayland: apply fullscreen state after mapping tiled window

This commit is contained in:
Julian Orth 2025-02-28 12:58:19 +01:00
parent faa3248a40
commit d683dda3fa

View file

@ -282,6 +282,9 @@ impl Xwindow {
}
Change::Map => {
self.data.state.map_tiled(self.clone());
if self.data.info.fullscreen.get() {
self.clone().tl_set_fullscreen(true);
}
self.data.title_changed();
}
}