X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=tag.c;h=dcda6dc77973c0fff42adbef8a1a7de586c7b547;hb=4c368bcd24172166aab32948fc63feaa6a1bec93;hp=b7c06dea039a929f989b06acbf8ada704608e39b;hpb=aa1bda81646e9d6188fd584009be0eee619f6966;p=dwm.git diff --git a/tag.c b/tag.c index b7c06de..dcda6dc 100644 --- a/tag.c +++ b/tag.c @@ -30,17 +30,6 @@ RULES static RReg *rreg = NULL; static unsigned int len = 0; -static void -commit() -{ - /* asserts sel != NULL */ - settitle(sel); - if(!isvisible(sel)) - arrange(NULL); - else - drawstatus(); -} - /* extern */ Client * @@ -132,7 +121,7 @@ tag(Arg *arg) for(i = 0; i < ntags; i++) sel->tags[i] = False; sel->tags[arg->i] = True; - commit(); + arrange(NULL); } void @@ -147,5 +136,5 @@ toggletag(Arg *arg) for(i = 0; i < ntags && !sel->tags[i]; i++); if(i == ntags) sel->tags[arg->i] = True; - commit(); + arrange(NULL); }