mirror of
https://github.com/0intro/wmii
synced 2024-11-22 22:02:30 +03:00
Fix tagging of client with multiple tags.
This commit is contained in:
parent
c20c1727cb
commit
abe8a08492
2
area.c
2
area.c
@ -151,7 +151,7 @@ attach_to_area(Area *a, Frame *f, Bool send) {
|
||||
if(!a->floating)
|
||||
arrange_column(a, False);
|
||||
else
|
||||
resize_client(f->client, &f->rect);
|
||||
resize_frame(f, &f->rect);
|
||||
|
||||
update_client_grab(f->client);
|
||||
if(a->frame)
|
||||
|
5
column.c
5
column.c
@ -178,8 +178,9 @@ arrange_column(Area *a, Bool dirty) {
|
||||
}
|
||||
scale_column(a);
|
||||
resize:
|
||||
for(f=a->frame; f; f=f->anext)
|
||||
resize_client(f->client, &f->rect);
|
||||
if(a->view == screen->sel)
|
||||
for(f=a->frame; f; f=f->anext)
|
||||
resize_client(f->client, &f->rect);
|
||||
flush_masked_events(EnterWindowMask);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user