mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 15:20:38 +00:00
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:
parent
26525cb157
commit
9609741ebf
3 changed files with 19 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue