JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
yet another consistency fix of dwm
authorAnselm R. Garbe <arg@suckless.org>
Mon, 12 Feb 2007 16:20:51 +0000 (17:20 +0100)
committerAnselm R. Garbe <arg@suckless.org>
Mon, 12 Feb 2007 16:20:51 +0000 (17:20 +0100)
view.c

diff --git a/view.c b/view.c
index 29b6b63..ded304e 100644 (file)
--- 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();