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:
wlux 2009-12-21 23:01:23 +00:00
parent 9a2f82232f
commit 525ed00081
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2009-12-21 Wolfgang Lux <wolfgang.lux@gmail.com> 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 * Source/NSOpenPanel.m (-setCanChooseDirectories): Reset the
current selection of an open panel when directory selection is current selection of an open panel when directory selection is
disabled. This prevents bogus directories being returned from the disabled. This prevents bogus directories being returned from the

View file

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