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:
Gregory John Casamento 2002-12-15 07:36:09 +00:00
parent 285456e30d
commit ad6754d31e

View file

@ -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];
}
}
}
}