*
*/
int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
+ DLOG("configure_event, sequence %d\n", event->sequence);
/* We ignore this sequence twice because events for child and frame should be ignored */
add_ignore_event(event->sequence);
add_ignore_event(event->sequence);
/* Check if the window is already managed */
if (con_by_window_id(window) != NULL) {
- LOG("already managed\n");
+ LOG("already managed (by con %p)\n", con_by_window_id(window));
goto out;
}
next = con->parent;
}
- LOG("closing %p\n", con);
+ DLOG("closing %p, kill_window = %d\n", con, kill_window);
Con *child;
/* We cannot use TAILQ_FOREACH because the children get deleted
* in their parent’s nodes_head */