Fix bug where an NSScrollView incorrectly claimed to be opaque while

its clip view is not.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29156 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Wolfgang Lux 2009-12-21 23:01:23 +00:00
parent dd971a7f9b
commit d51594fb37
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2009-12-21 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/NSScrollView.m (-isOpaque): Fix bug where an NSScrollView
incorrectly claimed to be opaque while its clip view is not.
* Source/NSOpenPanel.m (-setCanChooseDirectories): Reset the
current selection of an open panel when directory selection is
disabled. This prevents bogus directories being returned from the

View file

@ -1290,7 +1290,7 @@ static float scrollerWidth;
- (BOOL) isOpaque
{
return YES;
return [_contentView isOpaque];
}
- (NSBorderType) borderType