- Timestamp:
- May 13, 2008 10:00:54 AM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleView.cpp
r8733 r8784 3547 3547 setDesktopGeometry(sz.width(), sz.height()); 3548 3548 3549 if (m IsAdditionsActive && mAutoresizeGuest)3549 if (mAutoresizeGuest) 3550 3550 mConsole.GetDisplay().SetVideoModeHint (sz.width(), sz.height(), 0, 0); 3551 3551 } -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r8741 r8784 734 734 show(); 735 735 736 str = cmachine.GetExtraData (VBoxDefs::GUI_Fullscreen);737 if (str == "on")738 vmFullscreenAction->setChecked (true);739 740 736 vmSeamlessAction->setEnabled (false); 741 737 str = cmachine.GetExtraData (VBoxDefs::GUI_Seamless); … … 949 945 } 950 946 #endif 947 948 /* Currently the machine is started and the guest API could be used... 949 * Checking if the fullscreen mode should be activated */ 950 QString str = cmachine.GetExtraData (VBoxDefs::GUI_Fullscreen); 951 if (str == "on") 952 vmFullscreenAction->setChecked (true); 951 953 952 954 /* If seamless mode should be enabled then check if it is enabled
Note:
See TracChangeset
for help on using the changeset viewer.