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