Changeset 27689 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 25, 2010 9:55:48 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59284
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r27682 r27689 2685 2685 void VBoxConsoleView::toggleFSMode (const QSize &aSize) 2686 2686 { 2687 if ( (mGuestSupportsGraphics && mAutoresizeGuest)||2687 if (mAutoresizeGuest || 2688 2688 mMainWnd->isTrueSeamless() || 2689 2689 mMainWnd->isTrueFullscreen()) … … 4022 4022 void VBoxConsoleView::doResizeHint (const QSize &aToSize) 4023 4023 { 4024 if (m GuestSupportsGraphics && mAutoresizeGuest)4024 if (mAutoresizeGuest) 4025 4025 { 4026 4026 /* If this slot is invoked directly then use the passed size -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r27625 r27689 1730 1730 } 1731 1731 1732 bool fFullscreenActivated = false; 1733 QString str = machine.GetExtraData (VBoxDefs::GUI_Fullscreen); 1734 if (str == "on") 1735 { 1736 mVmFullscreenAction->setChecked (true); 1737 fFullscreenActivated = true; 1738 } 1739 1732 1740 /* Start the VM */ 1733 1741 CProgress progress = vboxGlobal().isStartPausedEnabled() || vboxGlobal().isDebuggerAutoShowEnabled() ? … … 1791 1799 /* Currently the machine is started and the guest API could be used... 1792 1800 * Checking if the fullscreen mode should be activated */ 1793 QString str = machine.GetExtraData (VBoxDefs::GUI_Fullscreen); 1794 if (str == "on") 1795 mVmFullscreenAction->setChecked (true); 1801 if (fFullscreenActivated) 1802 mConsole->toggleFSMode (mConsole->size()); 1796 1803 1797 1804 /* If seamless mode should be enabled then check if it is enabled
Note:
See TracChangeset
for help on using the changeset viewer.