Corrected an issue with menu editing.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19207 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-04-28 02:13:57 +00:00
parent ec29962ef2
commit 16caf8e697
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2004-04-27 22:15 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/0Menus/GormMenuEditor.m: [GormMenuEditor deleteSelection]
added code to re-display and resize after an item is deleted. This
corrects the problem where the menu item doesn't immediately disappear
from the screen when deleted.
2004-04-27 21:50 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassInspector.m: Added code to properly collapse the item

View file

@ -535,6 +535,8 @@
{
[edited removeItem: i];
}
[edited sizeToFit];
[edited display];
}
}