mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
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:
parent
dd971a7f9b
commit
d51594fb37
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -1290,7 +1290,7 @@ static float scrollerWidth;
|
|||
|
||||
- (BOOL) isOpaque
|
||||
{
|
||||
return YES;
|
||||
return [_contentView isOpaque];
|
||||
}
|
||||
|
||||
- (NSBorderType) borderType
|
||||
|
|
Loading…
Reference in a new issue