From 5a92420fce8d70a329a8294c1c77bb8c3c7eaad4 Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Tue, 17 Jun 2008 09:57:13 +0100 Subject: [PATCH] restored y-coordinate fixing of client windows --- dwm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dwm.c b/dwm.c index 64bafb7..f4b0540 100644 --- a/dwm.c +++ b/dwm.c @@ -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; } -- 1.7.10.4