Changeset 33912 in vbox
- Timestamp:
- Nov 9, 2010 4:25:00 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67568
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsUSB.cpp
r33882 r33912 93 93 toolBar->setSizePolicy (QSizePolicy::Fixed, QSizePolicy::MinimumExpanding); 94 94 toolBar->updateGeometry(); 95 toolBar->setMinimumHeight (toolBar->sizeHint().height()); 95 #ifdef Q_WS_MAC 96 /* On the Mac this has to be slightly higher, than what sizeHint returned. 97 * No idea why. */ 98 toolBar->setMinimumHeight(toolBar->sizeHint().height() + 4); 99 #else 100 toolBar->setMinimumHeight(toolBar->sizeHint().height()); 101 #endif /* Q_WS_MAC */ 96 102 mWtFilterHandler->layout()->addWidget (toolBar); 97 103
Note:
See TracChangeset
for help on using the changeset viewer.