X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/d6a6eca71d760fb3b61e35b187b9b9fd51092c71..016c54196e682ae8658854febb746b0437a010dc:/tag.c?ds=sidebyside diff --git a/tag.c b/tag.c index 512f355..7bc4da0 100644 --- a/tag.c +++ b/tag.c @@ -120,8 +120,12 @@ tag(Arg *arg) sel->tags[i] = False; sel->tags[arg->i] = True; settitle(sel); + detach(sel); + attach(sel); if(!isvisible(sel)) arrange(NULL); + else + drawstatus(); } void @@ -137,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(); }