X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=5309d0eb9b44c3bbc8fa1d221110c4b340cbfa0a;hb=373b11de11fd5cee875ef521e3ac0527565c4721;hp=510ec598efc1b738d70a472afd9839d9ccf08d4d;hpb=04a2b745299668890ae8571d6812514dbd487245;p=dwm.git diff --git a/client.c b/client.c index 510ec59..5309d0e 100644 --- a/client.c +++ b/client.c @@ -89,16 +89,12 @@ focus(Client *c) { XSetWindowBorder(dpy, old->win, dc.norm[ColBorder]); } if(c) { - if(issel) { - detachstack(c); - c->snext = stack; - stack = c; - grabbuttons(c, True); - XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]); - XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); - } - else - XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]); + detachstack(c); + c->snext = stack; + stack = c; + grabbuttons(c, True); + XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]); + XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); } else if(issel) XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);