X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=d4dfe6e6806b7735df9f599cab784fa9652ecbe1;hb=85c9ebf2fc7d8e531f9b29c78eac70543cf0c832;hp=85b1af82cbf008c66a9d3e7a1a3876a2bc0c8efc;hpb=a54cf2ecef2ca83441dccd454c694b92bca42a16;p=dwm.git diff --git a/client.c b/client.c index 85b1af8..d4dfe6e 100644 --- a/client.c +++ b/client.c @@ -226,6 +226,8 @@ manage(Window w, XWindowAttributes *wa) { c->isfloating = (rettrans == Success) || c->isfixed; attach(c); attachstack(c); + XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */ + setclientstate(c, IconicState); c->isbanned = True; focus(c); lt->arrange();