dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit aff4c787f484974fc01070842357548d7be395ce
parent fe3dfbbe90f813294bb69e41f996a000f63c1560
Author: Anselm R.Garbe <arg@10ksloc.org>
Date:   Mon, 14 Aug 2006 15:33:23 +0200

applied the saner patch (removed the pathetic one)

Diffstat:
Mtag.c | 10+++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git 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