yet another consistency fix of dwm
authorAnselm R. Garbe <arg@suckless.org>
Mon, 12 Feb 2007 17:20:51 +0100
changeset 751 c5f9c2d806e7
parent 750 154b5d4b4a26
child 752 9fe042b02e18
yet another consistency fix of dwm
view.c
--- a/view.c	Mon Feb 12 16:41:46 2007 +0100
+++ b/view.c	Mon Feb 12 17:20:51 2007 +0100
@@ -207,7 +207,7 @@
 
 void
 togglefloat(Arg *arg) {
-	if (!sel || arrange == dofloat)
+	if(!sel || arrange == dofloat)
 		return;
 	sel->isfloat = !sel->isfloat;
 	arrange();