diff options
author | hobbs <hobbs> | 2002-04-23 00:20:35 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-23 00:20:35 (GMT) |
commit | e2e0d8545161567ae0678b10c3b6e3e7625a7319 (patch) | |
tree | a856643118d026c2171547c749e53a064fe45f1a /unix/tkUnix3d.c | |
parent | 03279a3d911d5a9be16777815f6f224c38aafdd5 (diff) | |
download | tk-e2e0d8545161567ae0678b10c3b6e3e7625a7319.zip tk-e2e0d8545161567ae0678b10c3b6e3e7625a7319.tar.gz tk-e2e0d8545161567ae0678b10c3b6e3e7625a7319.tar.bz2 |
* generic/tkTextDisp.c (DisplayLineBackground):
* unix/tkUnix3d.c (Tk_3DHorizontalBevel):
* unix/tkUnixFont.c (Tk_DrawChars): applied fixes to not overrun
the X window 16-bit size limit. [Patch #541999] (bonfield)
Diffstat (limited to 'unix/tkUnix3d.c')
-rw-r--r-- | unix/tkUnix3d.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/unix/tkUnix3d.c b/unix/tkUnix3d.c index 28331c5..838a14b 100644 --- a/unix/tkUnix3d.c +++ b/unix/tkUnix3d.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnix3d.c,v 1.5 2000/04/14 01:36:35 ericm Exp $ + * RCS: @(#) $Id: tkUnix3d.c,v 1.6 2002/04/23 00:20:35 hobbs Exp $ */ #include <tk3d.h> @@ -294,6 +294,15 @@ Tk_3DHorizontalBevel(tkwin, drawable, border, x, y, width, height, for ( ; y < bottom; y++) { /* + * X Dimensions are 16-bit, so avoid wraparound or display errors + * by limiting these here. + */ + if (x1 < -32767) + x1 = -32767; + if (x2 > 32767) + x2 = 32767; + + /* * In some weird cases (such as large border widths for skinny * rectangles) x1 can be >= x2. Don't draw the lines * in these cases. |