comparison 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
comparison
equal deleted inserted replaced
529:e2bd83191fc6 530:451f19d48845
121 toggleview(&a); 121 toggleview(&a);
122 } 122 }
123 return; 123 return;
124 } 124 }
125 } 125 }
126 if(ev->x < x + bmw) { 126 if((ev->x < x + bmw) && (ev->button == Button1))
127 if(ev->button == Button1) 127 togglemode(NULL);
128 togglemode(NULL);
129 else if(ev->button == Button3)
130 togglestackpos(NULL);
131 }
132 } 128 }
133 else if((c = getclient(ev->window))) { 129 else if((c = getclient(ev->window))) {
134 focus(c); 130 focus(c);
135 if(CLEANMASK(ev->state) != MODKEY) 131 if(CLEANMASK(ev->state) != MODKEY)
136 return; 132 return;