applied the saner patch (removed the pathetic one)
authorAnselm R.Garbe <arg@10ksloc.org>
Mon, 14 Aug 2006 15:33:23 +0200
changeset 277 1e7fa455e3b4
parent 276 9a0a351dd910
child 278 c1187ddcd7f7
applied the saner patch (removed the pathetic one)
tag.c
--- a/tag.c	Mon Aug 14 15:31:58 2006 +0200
+++ b/tag.c	Mon Aug 14 15:33:23 2006 +0200
@@ -37,15 +37,11 @@
 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