From 49308d502639960d4ff3bae07dbb31d97d11eb26 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 28 Nov 2010 21:07:08 +0100 Subject: [PATCH] =?utf8?q?Bugfix:=20don=E2=80=99t=20update=20focus=20when?= =?utf8?q?=20moving=20mouse=20over=20stacked/tabbed=20decorations=20(Thank?= =?utf8?q?s=20fernandotcl)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/handlers.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/handlers.c b/src/handlers.c index ab41604d..78522ea0 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -263,6 +263,9 @@ int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notif return 1; } + if (con->layout != L_DEFAULT) + return 1; + /* see over which rect the user is */ Con *current; TAILQ_FOREACH(current, &(con->nodes_head), nodes) { -- 2.39.5