summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-03 17:47:10 +0000
committerDana Jansens <danakj@orodu.net>2003-08-03 17:47:10 +0000
commit26827d875ad1fc1b8738f9456f20296241e0bdee (patch)
treee45fe29f38c3181aec97a3db6d274bcf7495a42b /openbox/client.c
parent9ba3f7d0fd06cd8c29571a997c4092acfbbb2c98 (diff)
kill non-opaque move/resize
add an option for redrawing/resizing the client window while resizing, when disabled the client is not touched until the resize is complete.
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c
index e8b5416c..1f1d8032 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -1888,9 +1888,9 @@ void client_configure_full(ObClient *self, ObCorner anchor,
/* for app-requested resizes, always resize if 'resized' is true.
for user-requested ones, only resize if final is true, or when
- resizing in opaque mode */
+ resizing in redraw mode */
if ((!user && resized) ||
- (user && (final || (resized && config_opaque_resize))))
+ (user && (final || (resized && config_redraw_resize))))
XResizeWindow(ob_display, self->window, w, h);
/* move/resize the frame to match the request */