Browse Source

yet another consistency fix of dwm

Anselm R. Garbe 18 năm trước cách đây
mục cha
commit
6ba400ee0f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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();