diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-25 11:50:42 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-25 11:50:42 -0600 |
commit | 5d73134e338c8a9a515079908459040b582a225b (patch) | |
tree | 1fcfb71457009d01c0f64f58d0eb7f659fcd8700 /client.h | |
parent | Merge remote-tracking branch 'upstream/main' into wlroots-next (diff) | |
parent | set preferred scale on creation (LayerShell) (diff) | |
download | dwl-5d73134e338c8a9a515079908459040b582a225b.tar.gz dwl-5d73134e338c8a9a515079908459040b582a225b.tar.bz2 dwl-5d73134e338c8a9a515079908459040b582a225b.tar.xz dwl-5d73134e338c8a9a515079908459040b582a225b.tar.zst dwl-5d73134e338c8a9a515079908459040b582a225b.zip |
Merge remote-tracking branch 'upstream/main' into wlroots-next
Diffstat (limited to '')
-rw-r--r-- | client.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -350,7 +350,7 @@ client_set_size(Client *c, uint32_t width, uint32_t height) #ifdef XWAYLAND if (client_is_x11(c)) { wlr_xwayland_surface_configure(c->surface.xwayland, - c->geom.x, c->geom.y, width, height); + c->geom.x + c->bw, c->geom.y + c->bw, width, height); return 0; } #endif |