Changeset 16704 in vbox
- Timestamp:
- Feb 12, 2009 11:10:26 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42720
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r16699 r16704 1370 1370 LogFlowFunc (("AdditionsStateChangeEventType\n")); 1371 1371 1372 /* Always send a size hint if we are in fullscreen or seamless 1373 * when the graphics capability is enabled, in case the host 1374 * resolution has changed since the VM was last run. */ 1375 if (!mDoResize && 1376 (mMainWnd->isTrueSeamless() || mMainWnd->isTrueFullscreen())) 1377 mDoResize = (mGuestSupportsGraphics != ge->supportsGraphics()); 1378 1372 1379 mGuestSupportsGraphics = ge->supportsGraphics(); 1373 1380 1374 1381 maybeRestrictMinimumSize(); 1382 1383 /* This will only be acted upon if mDoResize is true. */ 1384 doResizeHint(); 1375 1385 1376 1386 emit additionsStateChanged (ge->additionVersion(), … … 3839 3849 mConsole.GetDisplay().SetVideoModeHint (sz.width(), sz.height(), 0, 0); 3840 3850 } 3851 /* we have resized now... */ 3852 mDoResize = false; 3841 3853 } 3842 3854 }
Note:
See TracChangeset
for help on using the changeset viewer.