aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2021-09-24 14:59:50 +0200
committerHenning Gründl <henning.gruendl@qt.io>2021-09-24 15:32:11 +0000
commit0a8545c068b99609127eda34484ccc8614d90af4 (patch)
tree3d6df05ba026bbc183cecfe274f8cc1d11ed909f
parentb75d91e57bfe12dcd76523c5268c34532e869421 (diff)
QmlDesigner: Collapse specific section by default
Collapse AdvancedSection and LayerSection by default. Task-number: QDS-5136 Change-Id: Ia60c47095749e7181156a79a652d6a56633ee3a6 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml
index ca0ba9661d..98b41da305 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 {