Introduction
Introduction Statistics Contact Development Disclaimer Help
trestored y-coordinate fixing of client windows - dwm - [fork] customized build…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 5a92420fce8d70a329a8294c1c77bb8c3c7eaad4
parent 1ce173402f0941ef8e8c6cf21f88b8a89511969c
Author: Anselm R Garbe <[email protected]>
Date: Tue, 17 Jun 2008 09:57:13 +0100
restored y-coordinate fixing of client windows
Diffstat:
M dwm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/dwm.c b/dwm.c
t@@ -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 …
+ c->y = MAX(c->y, ((by == 0) && (c->x + (c->w / 2) >= wx) && (c…
c->bw = borderpx;
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.