diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-06-08 01:01:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-06-08 01:01:13 +0000 |
| commit | 5b3d5bda2439c20b33e7c8e32f58bf92b9bbed5c (patch) | |
| tree | fdef13ce2bca729d80702460083f4d1c50170673 | |
| parent | f7de8e5a59a4b0b2b92f9b88f0abd0db094b0fe5 (diff) | |
don't resize the client itself while doing a resize if its not final when config_opaque_resize is not on
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index f704ca1a..3d9239e4 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1733,7 +1733,7 @@ void client_configure(Client *self, Corner anchor, int x, int y, int w, int h, RECT_SET(self->area, x, y, w, h); - if (resized) + if (final || (resized && !config_opaque_resize)) XResizeWindow(ob_display, self->window, w, h); /* move/resize the frame to match the request */ |
