From: Anselm R.Garbe Date: Mon, 14 Aug 2006 13:33:23 +0000 (+0200) Subject: applied the saner patch (removed the pathetic one) X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=aff4c787f484974fc01070842357548d7be395ce applied the saner patch (removed the pathetic one) --- diff --git a/tag.c b/tag.c index b5bebea..edf68c6 100644 --- a/tag.c +++ b/tag.c @@ -37,15 +37,11 @@ void (*arrange)(Arg *) = DEFMODE; void appendtag(Arg *arg) { - Client *c = sel; - - if(!c) + if(!sel) return; - c->tags[arg->i] = True; - arrange(NULL); - focus(c); - restack(); + sel->tags[arg->i] = True; + settitle(sel); } void