QmlDesigner.PropertyEditor: styling empty pane

Change-Id: I5910b9a8c4f734fe50f7c8ed5d863e181be2894c
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Thomas Hartmann
2013-10-09 11:32:31 +02:00
parent 9be820785a
commit 18b22e8d76

View File

@@ -28,15 +28,25 @@
****************************************************************************/
import QtQuick 2.1
import HelperWidgets 2.0
Rectangle {
width: 100
height: 200
color: "#ff2323"
id: itemPane
width: 320
height: 400
color: "#404040"
Text {
id: test
text: "empty"
anchors.fill: parent
Section {
anchors.left: parent.left
anchors.right: parent.right
SectionLayout {
Label {
id: test
text: qsTr("None or multiple items selected.");
anchors.fill: parent
}
}
}
}