mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Don't drop expose events.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23602 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
98c7ec2bc2
commit
19870a4c7a
2 changed files with 3 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
* Headers/Additions/GNUstepGUI/GSDisplayServer.h:
|
||||
* Source/GSDisplayServer.m: Revert unnecessary addition to api
|
||||
* Source/NSWindow.m: Use ([flushwindowrect::]) for expose events.
|
||||
* Source/GSDragView.m: Don't drop expose events.
|
||||
|
||||
2006-09-23 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
|
|
|
@ -724,6 +724,7 @@ static GSDragView *sharedDragView = nil;
|
|||
{
|
||||
case GSAppKitWindowMoved:
|
||||
case GSAppKitWindowResized:
|
||||
case GSAppKitRegionExposed:
|
||||
/*
|
||||
* Keep window up-to-date with its current position.
|
||||
*/
|
||||
|
@ -753,7 +754,7 @@ static GSDragView *sharedDragView = nil;
|
|||
case GSAppKitWindowLeave:
|
||||
case GSAppKitWindowEnter:
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
NSLog(@"Internal: dropped NSAppKitDefined (%d) event", sub);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue