X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=client.c;h=3578beb31abf3d9d8f6d4749a866afac030c5a79;hb=15abade2720158fd35dcf59aa2cd5cbb325a849c;hp=4f2a69cf4df733914254f493e018575a712abac1;hpb=f15f45a9f80d5dcd1098b8e9aef4fee7bd53aba4;p=dwm.git diff --git a/client.c b/client.c index 4f2a69c..3578beb 100644 --- a/client.c +++ b/client.c @@ -10,6 +10,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) { @@ -99,6 +107,9 @@ focus(Client *c) } } if(c) { + detachstack(c); + c->snext = stack; + stack = c; grabbuttons(c, True); drawtitle(c); XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); @@ -198,8 +209,7 @@ killclient(Arg *arg) void manage(Window w, XWindowAttributes *wa) { - unsigned int i; - Client *c, *tc; + Client *c; Window trans; XSetWindowAttributes twa; @@ -238,11 +248,7 @@ manage(Window w, XWindowAttributes *wa) CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa); grabbuttons(c, False); - if((tc = getclient(trans))) /* inherit tags */ - for(i = 0; i < ntags; i++) - c->tags[i] = tc->tags[i]; - else - settags(c); + settags(c, getclient(trans)); if(!c->isfloat) c->isfloat = trans || (c->maxw && c->minw && @@ -251,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); @@ -425,6 +432,7 @@ unmanage(Client *c) XUngrabButton(dpy, AnyButton, AnyModifier, c->win); XDestroyWindow(dpy, c->twin); + detachstack(c); free(c->tags); free(c);