Przeglądaj źródła

yet another consistency fix of dwm

Anselm R. Garbe 18 lat temu
rodzic
commit
6ba400ee0f
1 zmienionych plików z 1 dodań i 1 usunięć
  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();