Changeset 97998 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 5, 2023 1:39:57 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r97978 r97998 369 369 /* Do not send a hint if nothing has changed to prevent the guest being notified about its own changes: */ 370 370 if (fSendHint && (int)frameBuffer()->width() == size.width() && (int)frameBuffer()->height() == size.height()) 371 { 372 LogRel(("GUI: UIMachineView::sltPerformGuestResize: Omitting to send size-hint %dx%d to guest-screen %d " 373 "because frame-buffer is already of the same size.\n", (int)screenId(), size.width(), size.height())); 371 374 fSendHint = false; 375 } 372 376 /* Do not send a hint if GA supports graphics and we have sent that hint already: */ 373 377 if (fSendHint && uisession()->isGuestSupportsGraphics() && m_lastSizeHint == size) 378 { 379 LogRel(("GUI: UIMachineView::sltPerformGuestResize: Omitting to send size-hint %dx%d to guest-screen %d " 380 "because this hint was previously sent.\n", (int)screenId(), size.width(), size.height())); 374 381 fSendHint = false; 382 } 375 383 if (fSendHint) 376 384 {
Note:
See TracChangeset
for help on using the changeset viewer.