move ugglyness to client.h

This commit is contained in:
Leonardo Hernández Hernández 2022-06-16 15:54:13 -05:00
parent 2ef5abfb72
commit 4ae6d0f387
No known key found for this signature in database
GPG key ID: E538897EE11B9624
2 changed files with 12 additions and 9 deletions

View file

@ -231,6 +231,17 @@ client_min_size(Client *c, int *width, int *height)
*height = state->min_height;
}
static inline void
client_restack_surface(Client *c)
{
#ifdef XWAYLAND
if (client_is_x11(c))
wlr_xwayland_surface_restack(c->surface.xwayland, NULL,
XCB_STACK_MODE_ABOVE);
#endif
return;
}
static inline Client *
client_from_wlr_surface(struct wlr_surface *s)
{