mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 23:31:02 +00:00
do not process GSAppKitWindowLeave events for closed windows
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29332 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a86d938f74
commit
16ffbb80ae
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-01-20 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Source/NSWindow: do not process GSAppKitWindowLeave events for
|
||||
closed windows
|
||||
|
||||
* Source/NSImage.m: _useFromFile: make extension checking case
|
||||
2010-01-19 13:49-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Source/NSMenu.m: Allow menus attached to popups to come up
|
||||
|
|
|
@ -3953,6 +3953,10 @@ resetCursorRectsForView(NSView *theView)
|
|||
break;
|
||||
|
||||
case GSAppKitWindowLeave:
|
||||
/* we ignore this event for a window that is already closed */
|
||||
if (_f.has_closed == YES);
|
||||
break;
|
||||
|
||||
/*
|
||||
* We need to go through all of the views, and if there
|
||||
* is any with a tracking rectangle then we need to
|
||||
|
|
Loading…
Reference in a new issue