all repos — dwm @ 0c71b16b9282562ee59f73f215c6ba827df25927

my dwm build

bugfix
Anselm R Garbe garbeam@gmail.com
Tue, 25 Mar 2008 09:41:14 +0000
commit

0c71b16b9282562ee59f73f215c6ba827df25927

parent

00c28a7ef2d465c7377c782c3dfd8b5ac0a805e1

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M dwm.cdwm.c

@@ -330,7 +330,7 @@ }

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]);