From 5e3bc834f443b2d7f0631b8e350324c56cb0e08d Mon Sep 17 00:00:00 2001 From: Kai Koehne <kai.koehne@nokia.com> Date: Mon, 12 Jul 2010 15:49:03 +0200 Subject: [PATCH] QmlTextEditor: Remove root decoration from outline combo box --- src/plugins/qmljseditor/qmljseditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/qmljseditor/qmljseditor.cpp b/src/plugins/qmljseditor/qmljseditor.cpp index 9142231c5c7..d12ffd30601 100644 --- a/src/plugins/qmljseditor/qmljseditor.cpp +++ b/src/plugins/qmljseditor/qmljseditor.cpp @@ -1006,6 +1006,7 @@ void QmlJSTextEditor::createToolBar(QmlJSEditorEditable *editable) QTreeView *treeView = new QTreeView; treeView->header()->hide(); treeView->setItemsExpandable(false); + treeView->setRootIsDecorated(false); m_methodCombo->setView(treeView); treeView->expandAll(); -- GitLab