aewl

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 diff
     1.1 --- a/event.c	Thu Oct 05 18:23:28 2006 +0200
     1.2 +++ b/event.c	Thu Oct 05 19:27:28 2006 +0200
     1.3 @@ -123,12 +123,8 @@
     1.4  				return;
     1.5  			}
     1.6  		}
     1.7 -		if(ev->x < x + bmw) {
     1.8 -			if(ev->button == Button1)
     1.9 -				togglemode(NULL);
    1.10 -			else if(ev->button == Button3)
    1.11 -				togglestackpos(NULL);
    1.12 -		}
    1.13 +		if((ev->x < x + bmw) && (ev->button == Button1))
    1.14 +			togglemode(NULL);
    1.15  	}
    1.16  	else if((c = getclient(ev->window))) {
    1.17  		focus(c);