Changeset 7482 in vbox
- Timestamp:
- Mar 18, 2008 9:07:14 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28933
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFrameBuffer.cpp
r7463 r7482 199 199 QRect screen = mView->getDesktopGeometry(); 200 200 /* Leave 200 pixels leeway. */ 201 if (aWidth > (ULONG) screen.width() - 200)201 if (aWidth > (ULONG) screen.width()) 202 202 *aSupported = FALSE; 203 if (aHeight > (ULONG) screen.height() - 200)203 if (aHeight > (ULONG) screen.height()) 204 204 *aSupported = FALSE; 205 205 if (aBPP != 32)
Note:
See TracChangeset
for help on using the changeset viewer.