dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 508922b90db66b88cfb66e81b8d48065d13f6bc1
parent 4adfdc9d95b2ec6603deab153697e2296e3c9c97
Author: Anselm R Garbe <garbeam@gmail.com>
Date:   Mon, 11 Feb 2008 20:51:04 +0000

fixed missing else branch
Diffstat:
Mdwm.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -374,7 +374,8 @@ buttonpress(XEvent *e) {
         else if(ev->button == Button2) {
             if((floating != m->layout->arrange) && c->isfloating)
                 togglefloating(NULL);
-            zoom(NULL);
+            else
+                zoom(NULL);
         }
         else if(ev->button == Button3 && !c->isfixed) {
             restack();