diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-09-28 14:03:39 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-09-28 14:03:39 +0200 |
commit | 1c2d673ded697f4b131f8700ce98392fbb383b2e (patch) | |
tree | 52fc4a3007ad890028a7960296bff5051c0eb144 /client.c | |
parent | c34df2c1b656fcdd2be2b4f9f827d88872dd2717 (diff) | |
download | dwm-1c2d673ded697f4b131f8700ce98392fbb383b2e.tar.gz |
applied Jukkas patch
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client.c b/client.c index 6b0322e..98b46a3 100644 --- a/client.c +++ b/client.c @@ -214,11 +214,11 @@ manage(Window w, XWindowAttributes *wa) { c->border = 0; updatesize(c); - if(c->x + c->w + 2 > sw) - c->x = sw - c->w - 2; + if(c->x + c->w + 2 * BORDERPX > sw) + c->x = sw - c->w - 2 * BORDERPX; if(c->x < 0) c->x = 0; - if(c->y + c->h + 2 > sh) + if(c->y + c->h + 2 * BORDERPX > sh) c->y = sh - c->h - 2; if(c->h != sh && c->y < bh) c->y = bh; @@ -302,7 +302,7 @@ resize(Client *c, Bool sizehints, Corner sticky) { if(c->w == sw && c->h == sh) wc.border_width = 0; else - wc.border_width = 1; + wc.border_width = BORDERPX; XConfigureWindow(dpy, c->win, CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc); configure(c); XSync(dpy, False); @@ -312,8 +312,8 @@ void resizetitle(Client *c) { c->tw = textw(c->name); if(c->tw > c->w) - c->tw = c->w + 2; - c->tx = c->x + c->w - c->tw + 2; + c->tw = c->w + 2 * BORDERPX; + c->tx = c->x + c->w - c->tw + 2 * BORDERPX; c->ty = c->y; if(isvisible(c)) XMoveResizeWindow(dpy, c->twin, c->tx, c->ty, c->tw, c->th); |