From 1b31caac9eebcdc7e40f05834bc8155aa0207d93 Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Sun, 29 Jan 2012 04:43:42 +0100 Subject: [PATCH] Fix client tab with free client and mouse (middle click titlebar) --- src/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mouse.c b/src/mouse.c index d4f3282..a6e79f1 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -165,7 +165,7 @@ mouse_move(struct client *c, void (*func)(struct client*, struct client*)) if(ev.type != MotionNotify) continue; - if(c->flags & CLIENT_FREE) + if(!func && c->flags & CLIENT_FREE) { _REV_SBORDER(c);