wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit e5ea2fb4fd3401400d324e5ae108fdc5f52995e6
parent cfb4f73ab67dd2158675b5e088dc4296bc0c8458
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Sat, 11 Mar 2006 21:13:44 +0100

corrected order of t->sel = i; in select_area, needs to be after focus_client, otherwise old-grabbing won't work


Diffstat:
cmd/wm/area.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/wm/area.c b/cmd/wm/area.c @@ -106,9 +106,9 @@ select_area(Area *a, char *arg) return; } new = t->area[i]; - t->sel = i; if(new->nframe) focus_client(new->frame[new->sel]->client); + t->sel = i; for(i = 0; i < a->nframe; i++) draw_client(a->frame[i]->client); }