ttake bar into account - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 6bdef73a4f0c2a96f8984ddc10b55f1d753ab5fe
(DIR) parent 234b12eb73f5c6de3da4eb93cac2159e73647529
(HTM) Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 19 May 2008 17:27:30 +0100
ttake bar into account
Diffstat:
M dwm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/dwm.c b/dwm.c
t@@ -963,7 +963,7 @@ 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, sy);
+ c->y = MAX(c->y, by == 0 ? bh : sy);
c->bw = borderpx;
}