dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 6ba400ee0fa55d1178cac5f38f4465a1ddf30490
parent 35e65ea64095d4a2ef305b20aac9d72624af514c
Author: Anselm R. Garbe <arg@suckless.org>
Date:   Mon, 12 Feb 2007 17:20:51 +0100

yet another consistency fix of dwm
Diffstat:
Mview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/view.c b/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();