From 0a8545c068b99609127eda34484ccc8614d90af4 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Fri, 24 Sep 2021 14:59:50 +0200 Subject: [PATCH] QmlDesigner: Collapse specific section by default Collapse AdvancedSection and LayerSection by default. Task-number: QDS-5136 Change-Id: Ia60c47095749e7181156a79a652d6a56633ee3a6 Reviewed-by: Thomas Hartmann --- .../propertyEditorQmlSources/QtQuick/ItemPane.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml index ca0ba9661d7..98b41da3051 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml @@ -157,9 +157,13 @@ PropertyEditorPane { visible: specificsOne.source.toString() !== "" } - AdvancedSection {} + AdvancedSection { + expanded: false + } - LayerSection {} + LayerSection { + expanded: false + } } Column {