diff options
author | vincentdarley <vincentdarley> | 2003-11-16 01:01:32 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-11-16 01:01:32 (GMT) |
commit | 9c4b699070cef63a8f5d56755a330322fa2cc6c9 (patch) | |
tree | 23ba70f06ef9480abf7114da72de13b962724c13 /macosx | |
parent | 7c9328b664ec680ed43ab91a5cd3f5672967d579 (diff) | |
download | tk-9c4b699070cef63a8f5d56755a330322fa2cc6c9.zip tk-9c4b699070cef63a8f5d56755a330322fa2cc6c9.tar.gz tk-9c4b699070cef63a8f5d56755a330322fa2cc6c9.tar.bz2 |
scrollbar size fix
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXScrlbr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/tkMacOSXScrlbr.c b/macosx/tkMacOSXScrlbr.c index ecf7c59..deee1b0 100644 --- a/macosx/tkMacOSXScrlbr.c +++ b/macosx/tkMacOSXScrlbr.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXScrlbr.c,v 1.5 2002/11/20 05:21:08 wolfsuit Exp $ + * RCS: @(#) $Id: tkMacOSXScrlbr.c,v 1.6 2003/11/16 01:01:32 vincentdarley Exp $ */ #include "tkScrollbar.h" @@ -1072,7 +1072,8 @@ UpdateControlValues( (1.0 - scrollPtr->lastFraction)); viewSize = (SInt32) ((scrollPtr->lastFraction - scrollPtr->firstFraction) - * MAX_SCROLLBAR_DVALUE); + * MAX_SCROLLBAR_DVALUE + /(1 - (scrollPtr->lastFraction - scrollPtr->firstFraction))); SetControlViewSize(macScrollPtr->sbHandle,viewSize); SetControlValue(macScrollPtr->sbHandle, |