From: Dana Jansens Date: Wed, 20 Oct 2010 19:30:29 +0000 (-0400) Subject: cap the client (and frame) window's dimensions at the range of an unsigned short... X-Git-Tag: release-3.5.0~27 X-Git-Url: http://git.openbox.org/?p=dana%2Fopenbox.git;a=commitdiff_plain;h=4e3ffbfc281a1e738838fd4859ac691ccea91a87 cap the client (and frame) window's dimensions at the range of an unsigned short (bug #4596) --- diff --git a/openbox/client.c b/openbox/client.c index cccc59d..0b03d9d 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2874,6 +2874,13 @@ void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h, the updated frame dimensions. */ frame_adjust_area(self->frame, FALSE, TRUE, TRUE); + /* cap any X windows at the size of an unsigned short */ + *w = MIN(*w, + G_MAXUSHORT - self->frame->size.left - self->frame->size.right); + *h = MIN(*h, + G_MAXUSHORT - self->frame->size.top - self->frame->size.bottom); + + /* gets the frame's position */ frame_client_gravity(self->frame, x, y);