change the way we report their geometry to xwayland clients

This commit is contained in:
Leonardo Hernández Hernández 2024-06-23 14:42:50 -06:00
parent 4a7d1bebf5
commit 44da0445e5
No known key found for this signature in database
GPG key ID: E538897EE11B9624
2 changed files with 3 additions and 4 deletions

View file

@ -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