some focus fixes

This commit is contained in:
Anselm R Garbe 2009-06-24 15:37:32 +01:00
parent 454a04acdf
commit 80ee95473b
1 changed files with 8 additions and 2 deletions

10
dwm.c
View File

@ -762,6 +762,8 @@ focus(Client *c) {
XSetWindowBorder(dpy, selmon->sel->win, dc.norm[ColBorder]);
}
if(c) {
if(c->mon != selmon)
selmon = c->mon;
if(c->isurgent)
clearurgent(c);
detachstack(c);
@ -792,8 +794,12 @@ focusmon(const Arg *arg) {
for(i = 0, m = mons; m; m = m->next, i++)
if(i == arg->ui) {
selmon = m;
focus(NULL);
if(m->stack)
focus(m->stack);
else {
selmon = m;
focus(NULL);
}
drawbars();
break;
}