aboutsummaryrefslogtreecommitdiffstats
path: root/event.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-07-26 20:15:02 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-07-26 20:15:02 +0200
commit154497541d1378d3aded02df06029de94d8af586 (patch)
tree59d001879dd8ec2a9d202bfe0ebd1d48990dec4d /event.c
parente0cfe076485e7df266b53eaffaa093d9c94a61a7 (diff)
downloaddwm-154497541d1378d3aded02df06029de94d8af586.tar.gz
applied Jeroen's {clean,spell}.diff patches, thanks Jeroen!
Diffstat (limited to 'event.c')
-rw-r--r--event.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/event.c b/event.c
index ac96df1..1454b0b 100644
--- 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)