Changeset 50597 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 26, 2014 10:09:47 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92470
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp
r50522 r50597 223 223 /* Move to the appropriate position: */ 224 224 move(workingArea.topLeft()); 225 #ifdef Q_WS_MAC 226 /* Resize to the appropriate size on Lion and previous: */ 227 if (vboxGlobal().osRelease() <= MacOSXRelease_Lion) 228 resize(workingArea.size()); 229 /* Resize to the appropriate size on ML and next 230 * only if that screen has no own user-space: */ 231 else if (!darwinScreensHaveSeparateSpaces() && m_uScreenId != 0) 232 resize(workingArea.size()); 233 #else /* !Q_WS_MAC */ 225 234 /* Resize to the appropriate size: */ 226 235 resize(workingArea.size()); 236 #endif /* !Q_WS_MAC */ 227 237 /* Adjust guest screen size if necessary: */ 228 238 machineView()->maybeAdjustGuestScreenSize();
Note:
See TracChangeset
for help on using the changeset viewer.