From: Michael Stapelberg Date: Sun, 28 Nov 2010 20:07:08 +0000 (+0100) Subject: Bugfix: don’t update focus when moving mouse over stacked/tabbed decorations (Thanks... X-Git-Tag: tree-pr1~26 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=49308d502639960d4ff3bae07dbb31d97d11eb26;p=i3%2Fi3 Bugfix: don’t update focus when moving mouse over stacked/tabbed decorations (Thanks fernandotcl) --- 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) {