all repos — openbox @ 88ac9ee76f1673978521e2bfcbfb284d8ae78734

openbox fork - make it a bit more like ryudo

debug messages
Dana Jansens danakj@orodu.net
commit

88ac9ee76f1673978521e2bfcbfb284d8ae78734

parent

020cbeff19290daf4871b9519737680992212d03

1 files changed, 7 insertions(+), 0 deletions(-)

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

@@ -894,6 +894,10 @@ e->xconfigurerequest.width : client->area.width;

h = (e->xconfigurerequest.value_mask & CWHeight) ? e->xconfigurerequest.height : client->area.height; + ob_debug("ConfigureRequest x %d %d y %d %d\n", + e->xconfigurerequest.value_mask & CWX, x, + e->xconfigurerequest.value_mask & CWY, y); + client_find_onscreen(client, &x, &y, w, h, FALSE); client_configure_full(client, x, y, w, h, FALSE, TRUE, TRUE); }

@@ -1081,6 +1085,9 @@ h = e->xclient.data.l[4];

else h = client->area.height; + ob_debug("MOVERESIZE x %d %d y %d %d\n", + e->xclient.data.l[0] & 1 << 8, x, + e->xclient.data.l[0] & 1 << 9, y); client_convert_gravity(client, grav, &x, &y, w, h); client_find_onscreen(client, &x, &y, w, h, FALSE); client_configure(client, x, y, w, h, FALSE, TRUE);