Changeset 8477 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Apr 29, 2008 4:47:05 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30346
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r8456 r8477 2235 2235 void VBoxConsoleWnd::setViewInSeamlessMode (const QRect &aTargetRect) 2236 2236 { 2237 LogFlowThisFunc(("mIsSeamless=%s\n", mIsSeamless ? "true" : "false")); 2237 2238 if (mIsSeamless) 2238 2239 { … … 2261 2262 QSizePolicy::Preferred, QSizePolicy::Fixed); 2262 2263 } 2264 LogFlowFuncLeave(); 2263 2265 } 2264 2266 … … 2660 2662 void VBoxConsoleWnd::setMask (const QRegion &aRegion) 2661 2663 { 2664 LogFlowFuncEnter(); 2662 2665 QRegion region = aRegion; 2663 2666 /* The global mask shift cause of toolbars and such things. */ … … 2731 2734 QMainWindow::setMask (region); 2732 2735 #endif 2736 LogFlowFuncLeave(); 2733 2737 } 2734 2738 … … 3250 3254 } 3251 3255 } 3256 /* Disable auto-resizing if advanced graphics are not available */ 3257 console->setAutoresizeGuest ( mIsGraphicsSupported 3258 && vmAutoresizeGuestAction->isOn()); 3259 vmAutoresizeGuestAction->setEnabled (mIsGraphicsSupported); 3252 3260 } 3253 3261
Note:
See TracChangeset
for help on using the changeset viewer.