X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fclient.c;h=474176888b784f03aeda80c88ad3ffaa884b3417;hb=b9532883a237fa8e04b7e6d1917e22f7518bbb19;hp=457a0f6ad03e2292406335d7d49d552b20cf5fb2;hpb=b276ff81a125e31b11db2632928355433965c4a1;p=chaz%2Fopenbox diff --git a/openbox/client.c b/openbox/client.c index 457a0f6a..47417688 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1303,9 +1303,12 @@ void client_setup_decor_and_functions(ObClient *self) 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 ? - self->decorations & OB_FRAME_DECOR_BORDER : 0; + decorations are disabled, but keep the border if that's + specified */ + if (self->mwmhints.decorations & OB_MWM_DECOR_BORDER) + self->decorations = OB_FRAME_DECOR_BORDER; + else + self->decorations = 0; } }