2004-09-25 Matt Rice <ratmice@yahoo.com>

* Source/NSScrollView.m: Remove corner view when we have one, but no
        vertical scroller. (Fixes #10501).


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20147 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Matt Rice 2004-09-26 12:49:32 +00:00
parent 0e900c12f3
commit 3a84f7e3af
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-09-25 Matt Rice <ratmice@yahoo.com>
* Source/NSScrollView.m: Remove corner view when we have one, but no
vertical scroller. (Fixes #10501).
2004-09-24 Adam Fedor <fedor@gnu.org>
* Documentation/GNUmakefile.postamble: Clean up files properly

View file

@ -1343,6 +1343,12 @@ static float scrollerWidth;
}
_cornerView = aView;
}
else if (_cornerView != nil)
{
[self removeSubview: _cornerView];
_cornerView = nil;
_hasCornerView = NO;
}
}
@end