all repos — openbox @ 07539c38c8392e5ce5ad0912e0c4ecf7982cb07a

openbox fork - make it a bit more like ryudo

more checks for when to do an XResizeWindow
Dana Jansens danakj@orodu.net
commit

07539c38c8392e5ce5ad0912e0c4ecf7982cb07a

parent

43d109dd062483154f00712a23b00494b0a13355

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -1761,7 +1761,8 @@ resized = w != self->area.width || h != self->area.height;

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 */