forked from qt-creator/qt-creator
Made the file overview combo box expand
The overview combo in the toolbar above the editor traditionally liked to be rather small. Now it will prefer to expand.
This commit is contained in:
@@ -196,6 +196,12 @@ void CPPEditor::createToolBar(CPPEditorEditable *editable)
|
||||
m_methodCombo = new QComboBox;
|
||||
m_methodCombo->setMinimumContentsLength(22);
|
||||
m_methodCombo->setSizeAdjustPolicy(QComboBox::AdjustToContents);
|
||||
|
||||
// Make the combo box prefer to expand
|
||||
QSizePolicy policy = m_methodCombo->sizePolicy();
|
||||
policy.setHorizontalPolicy(QSizePolicy::Expanding);
|
||||
m_methodCombo->setSizePolicy(policy);
|
||||
|
||||
QTreeView *methodView = new OverviewTreeView();
|
||||
methodView->header()->hide();
|
||||
methodView->setItemsExpandable(false);
|
||||
|
||||
Reference in New Issue
Block a user