all repos — openbox @ 550e961c0e4e5b512d2cc4408bda03201dee5089

openbox fork - make it a bit more like ryudo

when client removes its transient_for hint, don't keep the window as transient for the group when it shouldn't be (fixes bug #4586)
Dana Jansens danakj@orodu.net
commit

550e961c0e4e5b512d2cc4408bda03201dee5089

parent

77ee361f5cedb415c1189b0a75bde83a1a275f35

1 files changed, 4 insertions(+), 1 deletions(-)

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

@@ -1622,8 +1622,11 @@ client_setup_decor_and_functions(client, TRUE);

} else if (msgtype == XA_WM_HINTS) { client_update_wmhints(client); } else if (msgtype == XA_WM_TRANSIENT_FOR) { - client_update_transient_for(client); + /* get the transient-ness first, as this affects if the client + decides to be transient for the group or not in + client_update_transient_for() */ client_get_type_and_transientness(client); + client_update_transient_for(client); /* type may have changed, so update the layer */ client_calc_layer(client); client_setup_decor_and_functions(client, TRUE);