From: Dana Jansens Date: Thu, 9 Oct 2003 16:36:28 +0000 (+0000) Subject: dont give decorless windows a border when toggling decorations X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=b7d2693742aeb7514ce1111399bc5c3e93392335;p=chaz%2Fopenbox dont give decorless windows a border when toggling decorations --- diff --git a/openbox/client.c b/openbox/client.c index b3ea0082..ec90ba24 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1180,9 +1180,9 @@ void client_setup_decor_and_functions(ObClient *self) self->decorations &= ~OB_FRAME_DECOR_HANDLE; /* finally, the user can have requested no decorations, which overrides - everything */ + everything (but doesnt give it a border if it doesnt have one) */ if (self->undecorated) - self->decorations = OB_FRAME_DECOR_BORDER; + self->decorations &= OB_FRAME_DECOR_BORDER; /* if we don't have a titlebar, then we cannot shade! */ if (!(self->decorations & OB_FRAME_DECOR_TITLEBAR))