mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* Palettes/3Containers/GormTableViewEditor.m: Change documentRect to
documentVisibleRect. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23974 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1bc8528853
commit
382ab03052
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-10-27 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* Palettes/3Containers/GormTableViewEditor.m: Change documentRect to
|
||||
documentVisibleRect.
|
||||
|
||||
2006-10-23 01:23-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* English.lproj/GormHelpInspector.gorm: Change resize properties.
|
||||
|
|
|
@ -101,12 +101,12 @@ static NSText *_textObject;
|
|||
return NO;
|
||||
}
|
||||
|
||||
- (NSRect) documentRect
|
||||
- (NSRect) documentVisibleRect
|
||||
{
|
||||
NSRect visRect = _bounds;
|
||||
if ([_super_view respondsToSelector:@selector(documentRect)])
|
||||
if ([_super_view respondsToSelector:@selector(documentVisibleRect)])
|
||||
{
|
||||
visRect = [(NSClipView *)_super_view documentRect];
|
||||
visRect = [(NSClipView *)_super_view documentVisibleRect];
|
||||
}
|
||||
return visRect;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue