devdraw: fix flashing during window drag
R=rsc CC=codebot http://codereview.appspot.com/3922043
This commit is contained in:
parent
a2f6b810f5
commit
cbcec5adb9
2 changed files with 5 additions and 3 deletions
|
|
@ -525,7 +525,7 @@ eventhandler(EventHandlerCallRef next, EventRef event, void *arg)
|
|||
exit(0);
|
||||
|
||||
case kEventWindowBoundsChanged:
|
||||
eresized(1);
|
||||
eresized(0);
|
||||
break;
|
||||
|
||||
case kEventWindowDrawContent:
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ main(int argc, char **argv)
|
|||
{
|
||||
NSAutoreleasePool *pool = nil;
|
||||
NSApplication *application = nil;
|
||||
|
||||
DevdrawDelegate *app = nil;
|
||||
/*
|
||||
* Move the protocol off stdin/stdout so that
|
||||
* any inadvertent prints don't screw things up.
|
||||
|
|
@ -152,9 +152,11 @@ main(int argc, char **argv)
|
|||
|
||||
pool = [[NSAutoreleasePool alloc] init];
|
||||
application = [NSApplication sharedApplication];
|
||||
[application setDelegate:[[DevdrawDelegate alloc] init]];
|
||||
app = [[DevdrawDelegate alloc] init];
|
||||
[application setDelegate:app];
|
||||
[application run];
|
||||
[application setDelegate:nil];
|
||||
[app release];
|
||||
[pool release];
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue