* GormCore/GormResourceManager.m (-resourcePasteboardTypes): Add

IBMenuPboardType to work around menus not being draggable.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@37529 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2013-12-31 13:46:08 +00:00
parent 1e7c9315b6
commit 311fe1003b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-12-31 Fred Kiefer <FredKiefer@gmx.de>
* GormCore/GormResourceManager.m (-resourcePasteboardTypes): Add
IBMenuPboardType to work around menus not being draggable.
2013-11-04 10:03-EST Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormBoxEditor.m

View file

@ -41,7 +41,7 @@
- (NSArray *) resourcePasteboardTypes
{
return [NSArray arrayWithObjects: IBWindowPboardType, IBViewPboardType,
return [NSArray arrayWithObjects: IBWindowPboardType, IBViewPboardType, IBMenuPboardType,
NSFilenamesPboardType, GormLinkPboardType,
nil];
}