X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=49229a798d04141e7d2c4be38c780302a80d0c96;hb=2e68f22118438fed885c8cc3ccb8be94437eb327;hp=46693cd7cc4cdbb2c76e966c9f7cb02373313375;hpb=da0b2a2f31d5a849464215a86a968ec3a1af2f73;p=dwm.git diff --git a/client.c b/client.c index 46693cd..49229a7 100644 --- a/client.c +++ b/client.c @@ -11,6 +11,14 @@ /* static functions */ static void +detachstack(Client *c) +{ + Client **tc; + for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext); + *tc = c->snext; +} + +static void grabbuttons(Client *c, Bool focus) { XUngrabButton(dpy, AnyButton, AnyModifier, c->win); @@ -99,14 +107,9 @@ focus(Client *c) } } if(c) { - if((c->isfloat || arrange == dofloat) && (c != clients)) { - detach(c); - if(clients) { - clients->prev = c; - c->next = clients; - } - clients = c; - } + detachstack(c); + c->snext = stack; + stack = c; grabbuttons(c, True); drawtitle(c); XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); @@ -206,7 +209,6 @@ killclient(Arg *arg) void manage(Window w, XWindowAttributes *wa) { - unsigned int i; Client *c; Window trans; XSetWindowAttributes twa; @@ -255,7 +257,8 @@ manage(Window w, XWindowAttributes *wa) if(clients) clients->prev = c; c->next = clients; - clients = c; + c->snext = stack; + stack = clients = c; settitle(c); ban(c); @@ -411,19 +414,14 @@ togglemax(Arg *arg) void unmanage(Client *c) { - Client *tc, *fc; - Window trans; XGrabServer(dpy); XSetErrorHandler(xerrordummy); detach(c); + detachstack(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);