Changeset 8779 in vbox
- Timestamp:
- May 12, 2008 11:22:21 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30769
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r8672 r8779 3533 3533 setDesktopGeometry(sz.width(), sz.height()); 3534 3534 3535 if (m IsAdditionsActive && mAutoresizeGuest)3535 if (mAutoresizeGuest) 3536 3536 mConsole.GetDisplay().SetVideoModeHint (sz.width(), sz.height(), 0, 0); 3537 3537 } -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r8628 r8779 725 725 show(); 726 726 727 str = cmachine.GetExtraData (VBoxDefs::GUI_Fullscreen);728 if (str == "on")729 vmFullscreenAction->setOn (true);730 731 727 vmSeamlessAction->setEnabled (false); 732 728 str = cmachine.GetExtraData (VBoxDefs::GUI_Seamless); … … 941 937 } 942 938 #endif 939 940 /* Currently the machine is started and the guest API could be used... 941 * Checking if the fullscreen mode should be activated */ 942 QString str = cmachine.GetExtraData (VBoxDefs::GUI_Fullscreen); 943 if (str == "on") 944 vmFullscreenAction->setOn (true); 943 945 944 946 /* If seamless mode should be enabled then check if it is enabled
Note:
See TracChangeset
for help on using the changeset viewer.