mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* GormCore/GormViewWithSubviewsEditor.m: Call super instead of
parent. Corrects issue with connecting to NSBox and NSProgressIndicator. Patch by Wolfgang Lux <wolfgang.lux@gmail.com> git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@28724 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4585271703
commit
23e066acd5
2 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
|||
2009-09-22 16:59-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* GormCore/GormViewWithSubviewsEditor.m: Call super instead of
|
||||
parent. Corrects issue with connecting to NSBox and
|
||||
NSProgressIndicator.
|
||||
Patch by Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
2009-09-06 23:55-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* English.lproj/Gorm.gorm
|
||||
|
|
|
@ -306,7 +306,7 @@
|
|||
|
||||
if ([types containsObject: GormLinkPboardType] == YES)
|
||||
{
|
||||
return [parent draggingEntered: sender];
|
||||
return [super draggingEntered: sender];
|
||||
}
|
||||
|
||||
if (NSMouseInRect(loc, [_editedObject bounds], NO) == NO)
|
||||
|
@ -342,7 +342,7 @@
|
|||
|
||||
if ([types containsObject: GormLinkPboardType] == YES)
|
||||
{
|
||||
[parent draggingExited: sender];
|
||||
[super draggingExited: sender];
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -379,7 +379,7 @@
|
|||
|
||||
if ([types containsObject: GormLinkPboardType] == YES)
|
||||
{
|
||||
return [parent draggingUpdated: sender];
|
||||
return [super draggingUpdated: sender];
|
||||
}
|
||||
|
||||
rect.origin.x += 3;
|
||||
|
@ -430,7 +430,7 @@
|
|||
else if ([types containsObject: GormLinkPboardType] == YES)
|
||||
{
|
||||
dragType = GormLinkPboardType;
|
||||
return [parent prepareForDragOperation: sender];
|
||||
return [super prepareForDragOperation: sender];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue