Bugfix: don’t update focus when moving mouse over stacked/tabbed decorations (Thanks fernandotcl)
This commit is contained in:
parent
61e3415ddc
commit
49308d5026
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue