* Palettes/3Containers/GormTableViewEditor.m: Add scrollToPoint:

method to call the super_view. Corrects bug #18143.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23997 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-10-30 00:23:55 +00:00
parent f7a4a54dd7
commit 09b7d2c257
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-10-29 19:21-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/3Containers/GormTableViewEditor.m: Add scrollToPoint:
method to call the super_view. Corrects bug #18143.
2006-10-28 09:41-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* English.lproj/GormClassEditor.gorm: Add tool tips for button and

View file

@ -101,6 +101,14 @@ static NSText *_textObject;
return NO;
}
- (void) scrollToPoint: (NSPoint)point
{
if ([_super_view respondsToSelector:@selector(scrollToPoint:)])
{
[(NSClipView *)_super_view scrollToPoint: point];
}
}
- (NSRect) documentVisibleRect
{
NSRect visRect = _bounds;