mirror of
https://github.com/0intro/wmii
synced 2025-03-15 11:13:06 +03:00
corrected order of t->sel = i; in select_area, needs to be after focus_client, otherwise old-grabbing won't work
This commit is contained in:
parent
cfb4f73ab6
commit
e5ea2fb4fd
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user