mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 18:31:20 +00:00
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:
parent
0e900c12f3
commit
3a84f7e3af
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -1343,6 +1343,12 @@ static float scrollerWidth;
|
|||
}
|
||||
_cornerView = aView;
|
||||
}
|
||||
else if (_cornerView != nil)
|
||||
{
|
||||
[self removeSubview: _cornerView];
|
||||
_cornerView = nil;
|
||||
_hasCornerView = NO;
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue