mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
Minor correction to last commit...
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15298 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
285456e30d
commit
ad6754d31e
1 changed files with 5 additions and 2 deletions
|
@ -453,8 +453,11 @@ static NSImage *classesImage = nil;
|
|||
|
||||
// select the item...
|
||||
row = [classesView rowForItem: className];
|
||||
[classesView selectRow: row byExtendingSelection: NO];
|
||||
[classesView scrollRowToVisible: row];
|
||||
if(row != NSNotFound)
|
||||
{
|
||||
[classesView selectRow: row byExtendingSelection: NO];
|
||||
[classesView scrollRowToVisible: row];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue