client.c
changeset 306 71f02d14dce1
parent 291 8e6e0aa5e2ae
child 307 ec8a66a2b9cc
--- a/client.c	Wed Aug 16 15:31:24 2006 +0200
+++ b/client.c	Wed Aug 16 15:57:36 2006 +0200
@@ -187,7 +187,7 @@
 void
 manage(Window w, XWindowAttributes *wa)
 {
-	Client *c;
+	Client *c, *tc;
 	Window trans;
 	XSetWindowAttributes twa;
 
@@ -258,6 +258,15 @@
 				c->maxw == c->minw && c->maxh == c->minh);
 	settitle(c);
 
+	if(trans && (tc = getclient(trans))) {
+		c->x = (tc->x + tc->w / 2) - (c->w / 2);
+		c->y = (tc->y + tc->h / 2) - (c->h / 2);
+	}
+	else {
+		c->x = (sw / 2) - (c->w / 2);
+		c->y = ((sh - bh) / 2) - (c->h / 2) + bh;
+	}
+
 	if(isvisible(c))
 		sel = c;
 	arrange(NULL);