JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied Jeroen's {clean,spell}.diff patches, thanks Jeroen!
[dwm.git] / event.c
diff --git a/event.c b/event.c
index ac96df1..1454b0b 100644 (file)
--- a/event.c
+++ b/event.c
@@ -142,12 +142,8 @@ buttonpress(XEvent *e) {
                                return;
                        }
                }
-               if(ev->x < x + blw)
-                       switch(ev->button) {
-                       case Button1:
-                               setlayout(NULL);
-                               break;
-                       }
+               if(ev->x < x + blw && ev->button == Button1)
+                       setlayout(NULL);
                else if(ev->button == Button4)
                        focusclient("-1");
                else if(ev->button == Button5)