From 9c4b699070cef63a8f5d56755a330322fa2cc6c9 Mon Sep 17 00:00:00 2001 From: vincentdarley Date: Sun, 16 Nov 2003 01:01:32 +0000 Subject: scrollbar size fix --- ChangeLog | 3 +++ macosx/tkMacOSXScrlbr.c | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 47cc504..c954131 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ fixed an unreported new problem if a single logical line wraps to fill more than the entire display. + * macosx/tkMacOSXScrlbr.c: fix to [Bug 840978] where the size + of the proportional scrollbar was calculated wrongly. + 2003-11-14 Joe English * doc/text.n: Fix markup errors. 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, -- cgit v0.12