diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-03-25 09:41:14 +0000 | 
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-03-25 09:41:14 +0000 | 
| commit | 0c71b16b9282562ee59f73f215c6ba827df25927 (patch) | |
| tree | 9683901357619382ba05672e8bdc9cf35b547e44 | |
| parent | 00c28a7ef2d465c7377c782c3dfd8b5ac0a805e1 (diff) | |
bugfix
| -rw-r--r-- | dwm.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -330,7 +330,7 @@ buttonpress(XEvent *e) {  		x = bgw;  		for(i = 0; i < LENGTH(tags); i++) {  			x += textw(tags[i]); -			if(ev->x > bgw && ev->x < x) { +			if(ev->x >= bgw && ev->x < x) {  				if(ev->button == Button1) {  					if(ev->state & MODKEY)  						tag(tags[i]); | 
