Changeset 8323 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 23, 2008 10:11:19 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30085
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r8322 r8323 1971 1971 * screen.height() /* display height */ 1972 1972 * QColor::numBitPlanes(); /* bit per pixel */ 1973 if (aOn && (availBits < usedBits)) 1973 CGuest guest = console->console().GetGuest(); 1974 ULONG maxWidth = guest.GetMaxGuestWidth(); 1975 ULONG maxHeight = guest.GetMaxGuestHeight(); 1976 if (aOn && ( (availBits < usedBits) 1977 || ((maxWidth != 0) && (maxWidth < screen.width())) 1978 || ((maxHeight != 0) && (maxHeight < screen.height())) 1979 ) 1980 ) 1974 1981 { 1975 1982 vboxProblem().cannotEnterSeamlessMode (screen.width(), -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r8322 r8323 1994 1994 * screen.height() /* display height */ 1995 1995 * depth(); /* bit per pixel */ 1996 if (aOn && (availBits < usedBits)) 1996 CGuest guest = console->console().GetGuest(); 1997 ULONG maxWidth = guest.GetMaxGuestWidth(); 1998 ULONG maxHeight = guest.GetMaxGuestHeight(); 1999 if (aOn && ( (availBits < usedBits) 2000 || ((maxWidth != 0) && (maxWidth < screen.width())) 2001 || ((maxHeight != 0) && (maxHeight < screen.height())) 2002 ) 2003 ) 1997 2004 { 1998 2005 vboxProblem().cannotEnterSeamlessMode (screen.width(),
Note:
See TracChangeset
for help on using the changeset viewer.