all repos — openbox @ 63a6a1f0533c3b453b5538a13e8fcb4344c3f247

openbox fork - make it a bit more like ryudo

don't use the timestamp and such fields when the _NET_ACTIVE_WINDOW is using the old spec
Dana Jansens danakj@orodu.net
commit

63a6a1f0533c3b453b5538a13e8fcb4344c3f247

parent

6af116c87273451dd5b0017642c600861234671e

1 files changed, 8 insertions(+), 3 deletions(-)

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

@@ -1227,11 +1227,16 @@ (e->xclient.data.l[0] == 0 ? "unknown" :

(e->xclient.data.l[0] == 1 ? "application" : (e->xclient.data.l[0] == 2 ? "user" : "INVALID")))); /* XXX make use of data.l[2] !? */ - event_curtime = e->xclient.data.l[1]; - if (event_curtime == 0) + if (e->xclient.data.l[0] == 1 || e->xclient.data.l[0] == 2) { + event_curtime = e->xclient.data.l[1]; + if (event_curtime == 0) + ob_debug_type(OB_DEBUG_APP_BUGS, + "_NET_ACTIVE_WINDOW message for window %s is" + " missing a timestamp\n", client->title); + } else ob_debug_type(OB_DEBUG_APP_BUGS, "_NET_ACTIVE_WINDOW message for window %s is " - "missing a timestamp\n", client->title); + "missing source indication\n"); client_activate(client, FALSE, (e->xclient.data.l[0] == 0 || e->xclient.data.l[0] == 2));