From 07539c38c8392e5ce5ad0912e0c4ecf7982cb07a Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 8 Jun 2003 22:37:31 +0000 Subject: [PATCH] more checks for when to do an XResizeWindow --- openbox/client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */ -- 2.39.2