Problem: 1372405
Title: (Scroller) Scrollbars are forced to a certain size
Received: Jul 25 1996 4:24PM The following source file changes were required in MacApp 3.3 final. They are all bugs.
UScroller.cp problem: scrollbars are forced to a certain size function: void TScroller::AdjustScrollBars(Boolean invalidate) old: size[ortho] = kSBarSize; new: size[ortho] = aScrollBar->fSize[ortho];
void TScroller::AdjustScrollBars(Boolean invalidate) { ... #if 1 //... Temporary size[ortho] = kSBarSize; #else size[ortho] = aScrollBar->fSize[ortho]; #endif ... }