Explorar el Código

applied the saner patch (removed the pathetic one)

Anselm R.Garbe hace 19 años
padre
commit
aff4c787f4
Se han modificado 1 ficheros con 3 adiciones y 7 borrados
  1. 3 7
      tag.c

+ 3 - 7
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