From: Dana Jansens Date: Sun, 8 Jun 2003 22:37:31 +0000 (+0000) Subject: more checks for when to do an XResizeWindow X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=07539c38c8392e5ce5ad0912e0c4ecf7982cb07a;p=chaz%2Fopenbox more checks for when to do an XResizeWindow --- diff --git a/openbox/client.c b/openbox/client.c index 6d5893e2..b7800a5e 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1761,7 +1761,8 @@ void client_configure(Client *self, Corner anchor, int x, int y, int w, int h, RECT_SET(self->area, x, y, w, h); - if (final || (resized && config_opaque_resize)) + if ((!user && resized) || + (user && (final || (resized && config_opaque_resize)))) XResizeWindow(ob_display, self->window, w, h); /* move/resize the frame to match the request */