Explorar el Código

yet another consistency fix of dwm

Anselm R. Garbe hace 18 años
padre
commit
6ba400ee0f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      view.c

+ 1 - 1
view.c

@@ -207,7 +207,7 @@ restack(void) {
 
 void
 togglefloat(Arg *arg) {
-	if (!sel || arrange == dofloat)
+	if(!sel || arrange == dofloat)
 		return;
 	sel->isfloat = !sel->isfloat;
 	arrange();