Correction to collapse of item when editing in inspector.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19206 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-04-28 01:48:49 +00:00
parent eb17ffb309
commit ec29962ef2
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2004-04-27 21:50 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassInspector.m: Added code to properly collapse the item
if the class is being edited in the class inspector.
* GormClassManager.m: some improvements on the previous fix.
2004-04-27 01:28 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassManager.m: Modified

View file

@ -68,9 +68,9 @@ NSNotificationCenter *nc = nil;
- (void) collapseClass: (NSString *)className
{
NSDebugLog(@"%@",className);
[classesView expandItem: className];
[classesView collapseItem: className];
[classesView reset];
[classesView expandItem: className];
[classesView collapseItem: className collapseChildren: YES];
}
- (void) reloadClasses