diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-13 16:45:58 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-13 16:45:58 +0000 |
| commit | 0ee1581824f4693884a6f0abde62d20642df82ed (patch) | |
| tree | e5d5ab6fc545aeb6abe2c2ba441261b263138de8 | |
| parent | 2fdad9a0ff8f0f379a0f4dca8f25895bb5b49d0f (diff) | |
fix drawcontents=no
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index 1c029841..47f807d8 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2722,8 +2722,8 @@ void client_configure_full(ObClient *self, gint x, gint y, gint w, gint h, for user-requested ones, only resize if final is true, or when resizing in redraw mode */ send_resize_client = ((!user && resized) || - (user && resized && - (final || config_resize_redraw))); + (user && (final || + (resized && config_resize_redraw)))); /* if the client is enlarging, then resize the client before the frame */ if (send_resize_client && (w > oldw || h > oldh)) { |
