diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2004-10-28 15:06:14 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2004-10-28 15:06:14 (GMT) |
commit | c87342572e59fbdad7f99c32447e402ffcd5a270 (patch) | |
tree | 4fc1f48a9a35834fee6f4f57915fa90a17067e3c /unix | |
parent | b5e7e8747736a9f4f6e9c3ad6e1763b6a5900c9c (diff) | |
download | tk-c87342572e59fbdad7f99c32447e402ffcd5a270.zip tk-c87342572e59fbdad7f99c32447e402ffcd5a270.tar.gz tk-c87342572e59fbdad7f99c32447e402ffcd5a270.tar.bz2 |
* unix/tkUnixScale.c (DisplayHorizontalValue): Fix for #220927 by
Michael Schlenker to keep the labels within the window.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixScale.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/unix/tkUnixScale.c b/unix/tkUnixScale.c index f8d3313..716a496 100644 --- a/unix/tkUnixScale.c +++ b/unix/tkUnixScale.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixScale.c,v 1.8 2001/09/21 21:34:10 hobbs Exp $ + * RCS: @(#) $Id: tkUnixScale.c,v 1.9 2004/10/28 15:06:27 patthoyts Exp $ */ #include "tkScale.h" @@ -500,7 +500,11 @@ DisplayHorizontalValue(scalePtr, drawable, value, top) if (x < (scalePtr->inset + SPACING)) { x = scalePtr->inset + SPACING; } - if (x > (Tk_Width(tkwin) - scalePtr->inset)) { + /* + * Check the right border so use starting point +text width + * for the check. + */ + if (x + width >= (Tk_Width(tkwin) - scalePtr->inset)) { x = Tk_Width(tkwin) - scalePtr->inset - SPACING - width; } Tk_DrawChars(scalePtr->display, drawable, scalePtr->textGC, |