X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=tag.c;h=7bc4da0337793584f55d49db3dd03e7e437a680c;hb=5056bb952ddd9d667d2897ab09324ef7ce1596ea;hp=3a32c52135add1edf0c95efecf0b781a29961ce7;hpb=af1158d105ae10469c7a735fcba040b16cea0d60;p=dwm.git diff --git a/tag.c b/tag.c index 3a32c52..7bc4da0 100644 --- a/tag.c +++ b/tag.c @@ -120,6 +120,8 @@ tag(Arg *arg) sel->tags[i] = False; sel->tags[arg->i] = True; settitle(sel); + detach(sel); + attach(sel); if(!isvisible(sel)) arrange(NULL); else @@ -139,6 +141,10 @@ toggletag(Arg *arg) if(i == ntags) sel->tags[arg->i] = True; settitle(sel); + detach(sel); + attach(sel); if(!isvisible(sel)) arrange(NULL); + else + drawstatus(); }