diff -r e2bd83191fc6 -r 451f19d48845 event.c --- a/event.c Thu Oct 05 18:23:28 2006 +0200 +++ b/event.c Thu Oct 05 19:27:28 2006 +0200 @@ -123,12 +123,8 @@ 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);