diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
index a3423ae9268ce400ce011885f5955dc260e6898f..15f6a80781e7e56a3dc54332ce2e7fb0460200a2 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
@@ -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
+            }
+        }
     }
 }