}
}
+ if ((clicked_into ? clicked_into->parent->type : con->parent->type) == CT_DOCKAREA) {
+ DLOG("Not handling, this client is inside a dockarea\n");
+ xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
+ xcb_flush(conn);
+ return 0;
+ }
+
/* click to focus, either on the clicked window or its child if thas was a
* click into a child decoration */
con_focus((clicked_into ? clicked_into : con));
return 1;
}
+ if (con->parent->type == CT_DOCKAREA) {
+ DLOG("Ignoring, this is a dock client\n");
+ return 1;
+ }
+
/* see if the user entered the window on a certain window decoration */
int layout = (enter_child ? con->parent->layout : con->layout);
Con *child;