all repos — openbox @ 2dac2cc01b004a282c8f041065a0e73f2ef538b5

openbox fork - make it a bit more like ryudo

ignore inferior enternotifies
add anotehr focusdebug print
Dana Jansens danakj@orodu.net
commit

2dac2cc01b004a282c8f041065a0e73f2ef538b5

parent

5f53cd5fb8b454f309fc8002e21004f70957f7bd

1 files changed, 9 insertions(+), 2 deletions(-)

jump to
M openbox/event.copenbox/event.c

@@ -289,7 +289,9 @@ case LeaveNotify:

event_lasttime = e->xcrossing.time; /* NotifyUngrab occurs when a mouse button is released and the event is caused, like when lowering a window */ - if (e->xcrossing.mode == NotifyGrab) return; + if (e->xcrossing.mode == NotifyGrab || + e->xcrossing.detail == NotifyInferior) + return; break; default: event_lasttime = CurrentTime;

@@ -386,8 +388,13 @@ focus_order[desktop] = g_list_remove(focus_order[desktop],

client); focus_order[desktop] = g_list_prepend(focus_order[desktop], client); - } else if (focus_follow) + } else if (focus_follow) { +#ifdef DEBUG_FOCUS + g_message("EnterNotify on %lx, focusing window", + client->window); +#endif client_focus(client); + } } break; case ConfigureRequest: