From d683dda3fa2bcc4b2beda23ab3f0213a3e834c28 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Fri, 28 Feb 2025 12:58:19 +0100 Subject: [PATCH] xwayland: apply fullscreen state after mapping tiled window --- src/ifs/wl_surface/x_surface/xwindow.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ifs/wl_surface/x_surface/xwindow.rs b/src/ifs/wl_surface/x_surface/xwindow.rs index 5d159313..7a87b269 100644 --- a/src/ifs/wl_surface/x_surface/xwindow.rs +++ b/src/ifs/wl_surface/x_surface/xwindow.rs @@ -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(); } }