mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* 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:
parent
f7a4a54dd7
commit
09b7d2c257
2 changed files with 13 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue