Commit 8aa860d

Anselm R. Garbe <arg@10kloc.org>
2006-09-07 12:12:40
simplified unmanage
1 parent 15abade
Changed files (1)
client.c
@@ -414,19 +414,13 @@ togglemax(Arg *arg)
 void
 unmanage(Client *c)
 {
-	Client *tc, *fc;
-	Window trans;
 	XGrabServer(dpy);
 	XSetErrorHandler(xerrordummy);
 
 	detach(c);
 	if(sel == c) {
-		XGetTransientForHint(dpy, c->win, &trans);
-		if(trans && (tc = getclient(trans)) && isvisible(tc))
-			fc = tc;
-		else
-			fc = getnext(clients);
-		focus(fc);
+		for(sel = stack; sel && !isvisible(sel); sel = sel->snext);
+		focus(sel);
 	}
 
 	XUngrabButton(dpy, AnyButton, AnyModifier, c->win);