Anselm R Garbe 17 anni fa
parent
commit
0c71b16b92
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      dwm.c

+ 1 - 1
dwm.c

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