Replaced scrollview change with one that is easier to understand.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27053 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2008-11-14 19:25:01 +00:00
parent 26525cb157
commit 9609741ebf
3 changed files with 19 additions and 4 deletions

View file

@ -236,8 +236,10 @@ static float scrollerWidth;
NSView *docView = [aView documentView];
[_contentView removeFromSuperview];
[self addSubview: aView];
// This must be done after adding it as a subview,
// otherwise it will get unset again.
_contentView = aView;
[self addSubview: _contentView];
if (docView != nil)
{
@ -1519,9 +1521,7 @@ static float scrollerWidth;
[content setFrame: frame];
}
// reset the content view...
[self setContentView: content];
_contentView = content;
}
if (hScroller != nil && _hasHorizScroller)