Changeset 46979 in vbox
- Timestamp:
- Jul 4, 2013 11:14:03 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86987
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStack.cpp
r46976 r46979 129 129 130 130 /* Get this attributes: */ 131 bool fIsWindow = isWindow(); 132 const int iX = fIsWindow ? parentWidget()->x() : 0; 133 const int iY = fIsWindow ? parentWidget()->y() : 0; 131 134 const int iWidth = parentWidget()->width(); 132 135 const int iHeight = minimumHeightHint(); 133 136 134 137 /* Move/resize according parent: */ 135 setGeometry(0, parentWidget()->height() - iHeight - m_iParentStatusBarHeight, 136 iWidth, iHeight); 138 setGeometry(iX, iY, iWidth, iHeight); 137 139 138 140 /* Layout content: */
Note:
See TracChangeset
for help on using the changeset viewer.