about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-29 17:12:57 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-29 17:12:57 +0200
commit7225c99903c1a7ada44d575251e3aca64625a172 (patch)
tree3d5a3023c1188d08f3811b39e17d2309be7596d4
parent36178933ed53857d59046278afb25b7525cafb39 (diff)
downloaddwm-7225c99903c1a7ada44d575251e3aca64625a172.tar.gz
fixed the z-layer issue described on mailinglist
-rw-r--r--view.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/view.c b/view.c
index ac8e7a3..a3b2029 100644
--- a/view.c
+++ b/view.c
@@ -294,11 +294,18 @@ restack(void) {
 		XRaiseWindow(dpy, sel->win);
 		XRaiseWindow(dpy, sel->twin);
 	}
-	if(arrange != dofloat)
+	if(arrange != dofloat) {
+		if(!sel->isfloat) {
+			XLowerWindow(dpy, sel->twin);
+			XLowerWindow(dpy, sel->win);
+		}
 		for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
+			if(c == sel)
+				continue;
 			XLowerWindow(dpy, c->twin);
 			XLowerWindow(dpy, c->win);
 		}
+	}
 	drawall();
 	XSync(dpy, False);
 	while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));