- Timestamp:
- Jul 3, 2007 6:05:56 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22598
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r3358 r3398 499 499 * Inform the server here only if VBVA is disabled. 500 500 */ 501 mParent->consoleVRDPServer()->SendUpdateBitmap(uScreenId, x, y, w, h); 501 if (maFramebuffers[uScreenId].u32ResizeStatus == ResizeStatus_Void) 502 { 503 mParent->consoleVRDPServer()->SendUpdateBitmap(uScreenId, x, y, w, h); 504 } 502 505 } 503 506 } … … 2051 2054 * fullscreen updates for new clients. 2052 2055 */ 2053 Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer()); 2054 pDisplay->mParent->consoleVRDPServer()->SendUpdate (uScreenId, NULL, 0); 2056 if (pFBInfo->u32ResizeStatus == ResizeStatus_Void) 2057 { 2058 Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer()); 2059 pDisplay->mParent->consoleVRDPServer()->SendUpdate (uScreenId, NULL, 0); 2060 } 2055 2061 } 2056 2062 }
Note:
See TracChangeset
for help on using the changeset viewer.