Changeset 49322 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 29, 2013 3:33:56 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90303
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp
r49306 r49322 143 143 (int)frameBuffer()->width() != workingArea().size().width() || 144 144 (int)frameBuffer()->height() != workingArea().size().height()) 145 if (m_bIsGuestAutoresizeEnabled && uisession()->isGuestSupportsGraphics()) 145 if (m_bIsGuestAutoresizeEnabled && 146 uisession()->isGuestSupportsGraphics() && 147 uisession()->isScreenVisible(screenId())) 146 148 { 147 149 frameBuffer()->setAutoEnabled(false); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp
r49306 r49322 161 161 (int)frameBuffer()->width() != workingArea().size().width() || 162 162 (int)frameBuffer()->height() != workingArea().size().height()) 163 if (uisession()->isGuestSupportsGraphics()) 163 if (uisession()->isGuestSupportsGraphics() && 164 uisession()->isScreenVisible(screenId())) 164 165 { 165 166 frameBuffer()->setAutoEnabled(false);
Note:
See TracChangeset
for help on using the changeset viewer.