]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: don’t update focus when moving mouse over stacked/tabbed decorations (Thanks...
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 28 Nov 2010 20:07:08 +0000 (21:07 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 28 Nov 2010 20:07:08 +0000 (21:07 +0100)
src/handlers.c

index ab41604d769a540e67a252d307af1dacc1badcff..78522ea0a58b2c3a2e1391d46b3f5a45c5e9dc03 100644 (file)
@@ -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) {