From 9352f4b68f77166abeeeca268781ed9f780b9e1e Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 24 Mar 2011 12:38:42 +0100 Subject: [PATCH] cppeditor: show 40 items in dropdown, mimicing the file list size --- src/plugins/cppeditor/cppeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cppeditor/cppeditor.cpp b/src/plugins/cppeditor/cppeditor.cpp index d48e1d95830..0a1e1969c20 100644 --- a/src/plugins/cppeditor/cppeditor.cpp +++ b/src/plugins/cppeditor/cppeditor.cpp @@ -479,7 +479,7 @@ void CPPEditorWidget::createToolBar(CPPEditor *editor) outlineView->header()->hide(); outlineView->setItemsExpandable(false); m_outlineCombo->setView(outlineView); - m_outlineCombo->setMaxVisibleItems(20); + m_outlineCombo->setMaxVisibleItems(40); m_outlineModel = new OverviewModel(this); m_proxyModel = new OverviewProxyModel(m_outlineModel, this);