mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 19:30:48 +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
9a2f82232f
commit
525ed00081
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -1290,7 +1290,7 @@ static float scrollerWidth;
|
||||||
|
|
||||||
- (BOOL) isOpaque
|
- (BOOL) isOpaque
|
||||||
{
|
{
|
||||||
return YES;
|
return [_contentView isOpaque];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSBorderType) borderType
|
- (NSBorderType) borderType
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue