this should fix keiss' maxcol issue (keiss: please verify!)

This commit is contained in:
Sander van Dijk 2006-05-05 20:06:08 +00:00
parent 25a0f841b1
commit 5e3214dfa4

View File

@ -221,8 +221,8 @@ handle_enternotify(XEvent *e)
Frame *oldf = nil, *f = c->frame.data[c->sel];
if(old)
oldf = old->frame.data[old->sel];
if((f->area->mode == Colmax) && oldf && (oldf->area == f->area))
return;
if(f->area->mode == Colmax)
c = f->area->frame.data[f->area->sel]->client;
if(c != old)
focus(c, False);
}