Mercurial > dwm-meillo
diff event.c @ 530:451f19d48845
removed the stack position stuff
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Thu, 05 Oct 2006 19:27:28 +0200 |
parents | 834a77509a64 |
children | 651f2c868b31 |
line wrap: on
line diff
--- 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);