From 7cb38e81b5256496acf4dcd97fc01081efc8fc1f Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Mon, 20 May 2013 18:14:27 +0200 Subject: Fix issue with clicks on the tabbed border. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks David Dufberg Tøttrup ! --- tabbed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tabbed.c') diff --git a/tabbed.c b/tabbed.c index d071b2c..3d85f03 100644 --- a/tabbed.c +++ b/tabbed.c @@ -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++) { -- cgit v1.2.3