all repos — openbox @ 96eab1423fbb92bfe35dc1cad0e43a90b9f1bc21

openbox fork - make it a bit more like ryudo

oops, added borders to windows when keepborder was on and they didnt have one to start with, ie docks etc
Mikael Magnusson mikachu@comhem.se
commit

96eab1423fbb92bfe35dc1cad0e43a90b9f1bc21

parent

9b7915ffd15774fbb918e5b0f1f0615b49fe59dd

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

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

@@ -1304,7 +1304,8 @@ if (! ((self->mwmhints.decorations & OB_MWM_DECOR_HANDLE) ||

(self->mwmhints.decorations & OB_MWM_DECOR_TITLE))) /* if the mwm hints request no handle or title, then all decorations are disabled */ - self->decorations = config_theme_keepborder ? OB_FRAME_DECOR_BORDER : 0; + self->decorations = config_theme_keepborder ? + self->decorations & OB_FRAME_DECOR_BORDER : 0; } }