Properly set up for next rectangle after out-of-bounds CopyRect.

This commit is contained in:
Stephen Heumann 2016-05-28 18:33:31 -05:00
parent bb65891a4a
commit 46a1657580
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,7 @@ void DoCopyRect (void) {
*/
if (!RectInRgn(&srcRect, GetVisHandle())) {
SendFBUpdateRequest(FALSE, rectX, rectY, rectWidth, rectHeight);
displayInProgress = FALSE;
return;
goto done;
}
/* We can use the window pointer as a LocInfo pointer because it starts
@ -72,6 +71,7 @@ void DoCopyRect (void) {
PPToPort((struct LocInfo *) vncWindow, &srcRect,
rectX - contentOriginPtr->h, rectY - contentOriginPtr->v, modeCopy);
done:
displayInProgress = FALSE;
NextRect(); /* Prepare for next rect */