summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSevz17 <leohdz172@outlook.com>2021-05-23 11:24:32 -0500
committerSevz17 <leohdz172@outlook.com>2021-05-23 11:44:56 -0500
commit9ab5e01d5b3864f151c222d001a8a2152f29b518 (patch)
tree5d164b11cf828d6c3ceeecb97f413a061b7a698e
parent93a58abf2955aa01b7c148b85490d443ab017fb7 (diff)
before set tiled verify if client is xdg-shell, then set tile
-rw-r--r--dwl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/dwl.c b/dwl.c
index 30a64f8..3a562b9 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1304,9 +1304,17 @@ mapnotify(struct wl_listener *listener, void *data)
c->geom.width += 2 * c->bw;
c->geom.height += 2 * c->bw;
+#ifdef XWAYLAND
+ if (c->type == XDGShell) {
+ /* Tell the client not to try anything fancy */
+ wlr_xdg_toplevel_set_tiled(c->surface.xdg, WLR_EDGE_TOP |
+ WLR_EDGE_BOTTOM | WLR_EDGE_LEFT | WLR_EDGE_RIGHT);
+ }
+#else
/* Tell the client not to try anything fancy */
wlr_xdg_toplevel_set_tiled(c->surface.xdg, WLR_EDGE_TOP |
WLR_EDGE_BOTTOM | WLR_EDGE_LEFT | WLR_EDGE_RIGHT);
+#endif
/* Set initial monitor, tags, floating status, and focus */
applyrules(c);