~kris/suckless

tabbed

7cb38e81b5256496acf4dcd97fc01081efc8fc1f — Christoph Lohmann 13 years ago 71880b1
Fix issue with clicks on the tabbed border.

Thanks David Dufberg Tøttrup <david@dufberg.se>!
1 files changed, 1 insertions(+), 1 deletions(-)

M tabbed.c
M tabbed.c => tabbed.c +1 -1
@@ 172,7 172,7 @@ buttonpress(const XEvent *e) {
	int i;
	Arg arg;

	if(getfirsttab() != 0 && ev->x < TEXTW(before))
	if((getfirsttab() != 0 && ev->x < TEXTW(before)) || ev->x < 0)
		return;

	for(i = 0; i < nclients; i++) {