From 10885d349a8426f0a55f34e78a2592267e8e55be Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Thu, 5 Oct 2006 19:27:28 +0200 Subject: removed the stack position stuff --- event.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'event.c') diff --git a/event.c b/event.c index a17034c..eab9b12 100644 --- a/event.c +++ b/event.c @@ -123,12 +123,8 @@ buttonpress(XEvent *e) { return; } } - if(ev->x < x + bmw) { - if(ev->button == Button1) - togglemode(NULL); - else if(ev->button == Button3) - togglestackpos(NULL); - } + if((ev->x < x + bmw) && (ev->button == Button1)) + togglemode(NULL); } else if((c = getclient(ev->window))) { focus(c); -- cgit v1.2.3-54-g00ecf