aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-08-25 13:02:34 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-09-21 21:00:47 -0600
commit002c7d22043da56a54511b5d234c2e3bd997d119 (patch)
treedb7e075802a62d465fca9f1250a617087d5d5011
parent8206cc8889994b3e9ce3c50abefc19367cf49a8e (diff)
downloaddwl-002c7d22043da56a54511b5d234c2e3bd997d119.tar.gz
tell xwayland clients they're maximized
like we do to xdg clients when tiled state is not supported.
-rw-r--r--client.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/client.h b/client.h
index dabea35..389b4f0 100644
--- a/client.h
+++ b/client.h
@@ -358,8 +358,11 @@ static inline void
client_set_tiled(Client *c, uint32_t edges)
{
#ifdef XWAYLAND
- if (client_is_x11(c))
+ if (client_is_x11(c)) {
+ wlr_xwayland_surface_set_maximized(c->surface.xwayland,
+ edges != WLR_EDGE_NONE, edges != WLR_EDGE_NONE);
return;
+ }
#endif
if (wl_resource_get_version(c->surface.xdg->toplevel->resource)
>= XDG_TOPLEVEL_STATE_TILED_RIGHT_SINCE_VERSION) {