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];

In Release 12, the changes are set back, why?:
void TScroller::AdjustScrollBars(Boolean invalidate)
{
 ...
            #if 1
                  //... Temporary
                        size[ortho] = kSBarSize;
            #else
                        size[ortho] = aScrollBar->fSize[ortho];
            #endif
 ...
}

Fix: Uncommented correction and corrected procedural scrollbar creation to create scrollbars of the proper thickness.