Compare commits

...

2 Commits

Author SHA1 Message Date
Adrian Chadd
0c75c83e3b Merge pull request #35 from phillbush/main
client.c: fix missing member on c->scr
2026-02-22 18:25:58 -08:00
Lucas de Sena
7baebf1316 client.c: fix missing member on c->scr 2026-02-23 01:35:12 +00:00

View File

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