X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=434a93b695bca5d0a94dcc77b330f0396741208a;hb=57871415c16664cce494b68dd3e985bcb32942c5;hp=f90a182e0cca4b1534ff5b4cba75475be1dfd7d6;hpb=52021851d1fd78970dfe63380d51b87f57d1ee1b;p=dwm.git diff --git a/client.c b/client.c index f90a182..434a93b 100644 --- a/client.c +++ b/client.c @@ -271,7 +271,7 @@ resize(Client *c, Bool sizehints, Corner sticky) { int bottom = c->y + c->h; int right = c->x + c->w; - XWindowChanges wc; + XConfigureEvent e; if(sizehints) { if(c->incw) @@ -287,22 +287,30 @@ resize(Client *c, Bool sizehints, Corner sticky) if(c->maxh && c->h > c->maxh) c->h = c->maxh; } + if(c->x > sw) /* might happen on restart */ + c->x = sw - c->w; + if(c->y > sh) + c->y = sh - c->h; if(sticky == TopRight || sticky == BotRight) c->x = right - c->w; if(sticky == BotLeft || sticky == BotRight) c->y = bottom - c->h; resizetitle(c); - - if(c->tags[tsel]) - wc.x = c->x; - else - wc.x = c->x + 2 * sw; - wc.y = c->y; - wc.width = c->w; - wc.height = c->h; - wc.border_width = 1; - XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc); + XSetWindowBorderWidth(dpy, c->win, 1); + XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); + + e.type = ConfigureNotify; + e.event = c->win; + e.window = c->win; + e.x = c->x; + e.y = c->y; + e.width = c->w; + e.height = c->h; + e.border_width = c->border; + e.above = None; + e.override_redirect = False; + XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e); XSync(dpy, False); }