Changeset 28670 in vbox
- Timestamp:
- Apr 23, 2010 5:53:57 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60541
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r28612 r28670 544 544 } 545 545 546 /* Normalize view to the optimal size: */ 546 /* Normalize view to the optimal size: 547 Note: Cause of the async behavior of some Linux WM's we have to 548 delay this a little bit. On Mac OS X this is not necessary and 549 create even wrong resize events. So there we set the geometry 550 immediately. */ 551 if (machineView()) 547 552 #ifdef Q_WS_MAC 548 if (machineView())549 553 machineView()->normalizeGeometry(true); 550 554 #else /* Q_WS_MAC */ 551 if (machineView())552 555 QTimer::singleShot(0, machineView(), SLOT(sltNormalizeGeometry())); 553 556 #endif /* Q_WS_MAC */
Note:
See TracChangeset
for help on using the changeset viewer.