properly behave in case the console window became active

This commit is contained in:
Just van Rossum 2000-03-05 16:09:21 +00:00
parent 7eef5364b8
commit 1eabbcb453
1 changed files with 5 additions and 0 deletions

View File

@ -198,6 +198,7 @@
case updateEvt:
if ( theWindow && (WindowPtr)mac_event.message == theWindow )
{
SetPort( theWindow );
BeginUpdate( theWindow );
refresh_rectangle( surface,
0, 0,
@ -231,6 +232,10 @@
return;
}
}
else if (part == inContent)
{
SelectWindow( theWindow );
}
}
else
{