mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 01:30:47 +00:00
[_initBackendWindow:] corrected the registration of drag types,
when a window gets realized. We have to use a copy here, as the original will get changed. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@9163 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3b6e2d911e
commit
cbf29dd632
1 changed files with 5 additions and 0 deletions
|
@ -581,6 +581,9 @@ static NSMapTable* windowmaps = NULL;
|
||||||
dragTypes = [context _dragTypesForWindow: self];
|
dragTypes = [context _dragTypesForWindow: self];
|
||||||
if (dragTypes)
|
if (dragTypes)
|
||||||
{
|
{
|
||||||
|
// As this is the original entry, it will change soon.
|
||||||
|
// We use a copy to reregister the same types later on.
|
||||||
|
dragTypes = [dragTypes copy];
|
||||||
[context _removeDragTypes: dragTypes fromWindow: self];
|
[context _removeDragTypes: dragTypes fromWindow: self];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -611,6 +614,8 @@ static NSMapTable* windowmaps = NULL;
|
||||||
{
|
{
|
||||||
NSDebugLLog(@"NSWindow", @"Resetting drag types for window");
|
NSDebugLLog(@"NSWindow", @"Resetting drag types for window");
|
||||||
[context _addDragTypes: dragTypes toWindow: self];
|
[context _addDragTypes: dragTypes toWindow: self];
|
||||||
|
// Free our local copy.
|
||||||
|
RELEASE(dragTypes);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Other stuff we need to do for deferred windows */
|
/* Other stuff we need to do for deferred windows */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue