more checks for when to do an XResizeWindow
This commit is contained in:
parent
43d109dd06
commit
07539c38c8
1 changed files with 2 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue