X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=dwm.c;h=b54ccd4f30e9c068be1453b62fb4caf9e45075cc;hp=d3169be9384efd66ea5fb32800909e4ea5cfd384;hb=ab06f7444bf558d4a58e6ca617b1b4f55c6b00c7;hpb=18b1312449531c7b77403aafb71611e9e48500ec diff --git a/dwm.c b/dwm.c index d3169be..b54ccd4 100644 --- a/dwm.c +++ b/dwm.c @@ -1,4 +1,4 @@ -#define XINULATOR /* debug, simulates dual head */ +//#define XINULATOR /* debug, simulates dual head */ /* See LICENSE file for copyright and license details. * * dynamic window manager is designed like any other X client as well. It is @@ -400,12 +400,9 @@ buttonpress(XEvent *e) { for(m = mons; m; m = m->next) if(ev->window == m->barwin) { if(m != selmon) { - if(selmon->stack) - focus(selmon->stack); - else { - selmon = m; - focus(NULL); - } + unfocus(selmon->stack); + selmon = m; + focus(NULL); } break; } @@ -1507,8 +1504,9 @@ tagmon(const Arg *arg) { c->mon = m; attach(c); attachstack(c); - selmon->sel = selmon->stack; m->sel = c; + for(c = selmon->stack; c && !ISVISIBLE(c); c = c->snext); + selmon->sel = c; arrange(); break; } @@ -1608,6 +1606,7 @@ unfocus(Client *c) { return; grabbuttons(c, False); XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]); + XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); } void @@ -1622,7 +1621,10 @@ unmanage(Client *c) { detach(c); detachstack(c); if(c->mon->sel == c) { - c->mon->sel = c->mon->stack; + /* TODO: consider separate the next code into a function or into detachstack? */ + Client *tc; + for(tc = c->mon->stack; tc && !ISVISIBLE(tc); tc = tc->snext); + c->mon->sel = tc; focus(NULL); } XUngrabButton(dpy, AnyButton, AnyModifier, c->win);