From 0ff9a47c483d94e65367554db2b2ef63eee77a22 Mon Sep 17 00:00:00 2001 From: Kai Koehne <kai.koehne@nokia.com> Date: Thu, 12 Aug 2010 15:20:44 +0200 Subject: [PATCH] QmlOutline: Don't decorate root item Saves some pixels, and there is little use in collapsing the complete tree. --- src/plugins/qmljseditor/qmljsoutlinetreeview.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp b/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp index 05db59af11b..1e47392f70d 100644 --- a/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp +++ b/src/plugins/qmljseditor/qmljsoutlinetreeview.cpp @@ -78,6 +78,8 @@ QmlJSOutlineTreeView::QmlJSOutlineTreeView(QWidget *parent) : setDropIndicatorShown(true); setDragDropMode(InternalMove); + setRootIsDecorated(false); + QmlJSOutlineItemDelegate *itemDelegate = new QmlJSOutlineItemDelegate(this); setItemDelegateForColumn(0, itemDelegate); } -- GitLab