Changeset 26568 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 16, 2010 11:27:52 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57750
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r26567 r26568 1274 1274 1275 1275 bool notifyManiWnd = mStoredConsoleSize.width() != re->width() 1276 || mStoredConsoleSize.height() != re->height(); 1277 1276 || mStoredConsoleSize.height() != re->height(); 1278 1277 1279 1278 /* Store the new size to prevent unwanted resize hints being … … 1364 1363 1365 1364 if (notifyManiWnd) 1366 1365 mMainWnd->onDisplayResize (re->width(), re->height()); 1367 1366 1368 1367 return true; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r26567 r26568 1239 1239 if (mIsSeamless) 1240 1240 { 1241 1242 1241 const QRect & geo = QApplication::desktop()->availableGeometry (this); 1242 int dW = geo.width() - (int)aWidth; 1243 1243 int dH = geo.height() - (int)aHeight; 1244 1245 1246 1247 1248 1249 1250 1244 if (RT_ABS (dW) > 16 || RT_ABS (dH) > 16) 1245 { 1246 mVmSeamlessAction->setChecked (false); 1247 /* should be cleared already, but just in case */ 1248 if (mIsSeamless) 1249 toggleFullscreenMode (false, true); 1250 } 1251 1251 } 1252 1252 }
Note:
See TracChangeset
for help on using the changeset viewer.