all repos — openbox @ 2f579df4e7b3af6c9a715e8921dcca9e9140d32e

openbox fork - make it a bit more like ryudo

call client_reconfigure after setup_decor_and_functions to make the changes appear
Dana Jansens danakj@orodu.net
commit

2f579df4e7b3af6c9a715e8921dcca9e9140d32e

parent

cc2237bb4f1ff3f32b58e8714f7ba72538df0d91

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

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

@@ -1431,6 +1431,7 @@ if (msgtype == XA_WM_NORMAL_HINTS) {

client_update_normal_hints(client); /* normal hints can make a window non-resizable */ client_setup_decor_and_functions(client); + client_reconfigure(client); } else if (msgtype == XA_WM_HINTS) { client_update_wmhints(client); } else if (msgtype == XA_WM_TRANSIENT_FOR) {

@@ -1439,6 +1440,7 @@ client_get_type_and_transientness(client);

/* type may have changed, so update the layer */ client_calc_layer(client); client_setup_decor_and_functions(client); + client_reconfigure(client); } else if (msgtype == prop_atoms.net_wm_name || msgtype == prop_atoms.wm_name || msgtype == prop_atoms.net_wm_icon_name ||

@@ -1447,6 +1449,7 @@ client_update_title(client);

} else if (msgtype == prop_atoms.wm_protocols) { client_update_protocols(client); client_setup_decor_and_functions(client); + client_reconfigure(client); } else if (msgtype == prop_atoms.net_wm_strut) { client_update_strut(client);