Changeset 56730 in vbox for trunk/src/VBox
- Timestamp:
- Jul 1, 2015 1:12:50 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101376
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r56704 r56730 248 248 uisession()->isScreenVisible(screenId()), 249 249 false, 0, 0, size.width(), size.height(), 0); 250 251 /* If we are in normal or scaled mode, remember the size sent for the next252 * time we have to restore one of those two modes: */253 if (!isFullscreenOrSeamless())254 storeGuestSizeHint(size);255 250 } 256 251 … … 326 321 * the viewport through IFramebuffer::NotifyUpdate): */ 327 322 display().InvalidateAndUpdateScreen(m_uScreenId); 323 324 /* If we are in normal or scaled mode and if GA are active, 325 * remember the guest-screen size to be able to restore it when necessary: */ 326 if (!isFullscreenOrSeamless() && uisession()->isGuestSupportsGraphics()) 327 storeGuestSizeHint(QSize(iWidth, iHeight)); 328 328 329 329 LogRelFlow(("GUI: UIMachineView::sltHandleNotifyChange: Complete for Screen=%d, Size=%dx%d\n",
Note:
See TracChangeset
for help on using the changeset viewer.