diff --git a/ChangeLog b/ChangeLog index 845f9d905..8cd3c7918 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-09-14 David Lazaro Saz + + * Source/NSScrollView.m ([NSScrollView -drawRect:]): Corrected problem + with the vertical black line of a scrollview being displaced 1 pixel + down. + Tue Sep 14 1999 Nicola Pero * Source/NSButton.m: ([-drawRect:]): Removed method. diff --git a/Source/NSScrollView.m b/Source/NSScrollView.m index cc381102d..695f98409 100644 --- a/Source/NSScrollView.m +++ b/Source/NSScrollView.m @@ -572,7 +572,7 @@ static Class rulerViewClass = nil; { horizLinePosition = scrollerWidth + borderThickness; horizLineLength -= scrollerWidth + 2 * borderThickness; - DPSmoveto(ctxt, horizLinePosition, borderThickness + 1); + DPSmoveto(ctxt, horizLinePosition, borderThickness); DPSrlineto(ctxt, 0, [self bounds].size.height - 2 * borderThickness - 1); DPSstroke(ctxt); }