diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-06-17 09:57:13 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-06-17 09:57:13 +0100 |
commit | 5a92420fce8d70a329a8294c1c77bb8c3c7eaad4 (patch) | |
tree | 7959fee85e9d9f576e272714bc7c62f7e857dd16 /dwm.c | |
parent | 1ce173402f0941ef8e8c6cf21f88b8a89511969c (diff) |
restored y-coordinate fixing of client windows
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -913,7 +913,8 @@ manage(Window w, XWindowAttributes *wa) { if(c->y + c->h + 2 * c->bw > sy + sh) c->y = sy + sh - c->h - 2 * c->bw; c->x = MAX(c->x, sx); - c->y = MAX(c->y, by == 0 ? bh : sy); + /* only fix client y-offset, if the client center might cover the bar */ + c->y = MAX(c->y, ((by == 0) && (c->x + (c->w / 2) >= wx) && (c->x + (c->w / 2) < wx + ww)) ? bh : sy); c->bw = borderpx; } |