From 7baebf13160175029db7d82c5209c852c8734b57 Mon Sep 17 00:00:00 2001 From: Lucas de Sena Date: Mon, 23 Feb 2026 01:35:12 +0000 Subject: [PATCH] client.c: fix missing member on c->scr --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index fd1701d..89b3bae 100644 --- a/client.c +++ b/client.c @@ -173,7 +173,7 @@ void close_fscrn(Client *c, int state) { if (c->fsscr == NULL) return; - XReparentWindow(dpy, c->parent, c->scr, c->x, c->y); + XReparentWindow(dpy, c->parent, c->scr->back, c->x, c->y); XMoveResizeWindow(dpy, c->parent, c->x, c->y, c->pwidth, c->pheight); XMoveResizeWindow(dpy, c->window, 4, c->scr->bh, c->pwidth-c->framewidth, c->pheight-c->frameheight); XResizeWindow(dpy, c->window, c->pwidth-c->framewidth, c->pheight-c->frameheight);