Updated toolbar delegate.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21470 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-07-14 13:00:28 +00:00
parent 5de62d0575
commit 0e4671f628
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-07-14 09:03 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormDocument.m: Implement toolbarSelectableItemIdentifiers
in the toolbar delegate so that the items will remain selected showing
the current selection.
2005-07-14 00:05 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormInspectorsManager.m: Removed commented out

View file

@ -4268,4 +4268,14 @@ willBeInsertedIntoToolbar: (BOOL)flag
@"FileItem",
nil];
}
- (NSArray*) toolbarSelectableItemIdentifiers: (NSToolbar*)toolbar
{
return [NSArray arrayWithObjects: @"ObjectsItem",
@"ImagesItem",
@"SoundsItem",
@"ClassesItem",
@"FileItem",
nil];
}
@end