Bugfix: Fix focus follows mouse for non-default layout cons (Thanks phnom)

Fixes: #361
This commit is contained in:
Michael Stapelberg 2011-05-12 22:24:52 +02:00
parent 15c288f7d7
commit b0e871e0cf
1 changed files with 8 additions and 13 deletions

View File

@ -184,6 +184,7 @@ static int handle_enter_notify(xcb_enter_notify_event_t *event) {
/* see if the user entered the window on a certain window decoration */
int layout = (enter_child ? con->parent->layout : con->layout);
if (layout == L_DEFAULT) {
Con *child;
TAILQ_FOREACH(child, &(con->nodes_head), nodes)
if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
@ -191,12 +192,6 @@ static int handle_enter_notify(xcb_enter_notify_event_t *event) {
con = child;
break;
}
/* for stacked/tabbed layout we do not want to change focus when the user
* enters the window at the decoration of any child window. */
if (layout == L_STACKED || layout == L_TABBED) {
con = TAILQ_FIRST(&(con->parent->focus_head));
LOG("using focused %p / %s instead\n", con, con->name);
}
#if 0