diff --git a/share/qtcreator/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml b/share/qtcreator/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml index f0d8cf7e732..77eedc67de1 100644 --- a/share/qtcreator/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml +++ b/share/qtcreator/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml @@ -163,9 +163,10 @@ Item { } Text { - text: qsTr("No materials yet."); + text: qsTr("No materials yet.\nClick '+' above to start.") color: StudioTheme.Values.themeTextColor font.pixelSize: StudioTheme.Values.mediumFontSize + horizontalAlignment: Text.AlignHCenter topPadding: 30 anchors.horizontalCenter: parent.horizontalCenter visible: materialBrowserModel.hasQuick3DImport && materialBrowserModel.isEmpty && searchBox.isEmpty() diff --git a/share/qtcreator/qmldesigner/materialEditorQmlSources/EmptyMaterialEditorPane.qml b/share/qtcreator/qmldesigner/materialEditorQmlSources/EmptyMaterialEditorPane.qml index 2e812dcd661..80ec524e23e 100644 --- a/share/qtcreator/qmldesigner/materialEditorQmlSources/EmptyMaterialEditorPane.qml +++ b/share/qtcreator/qmldesigner/materialEditorQmlSources/EmptyMaterialEditorPane.qml @@ -48,10 +48,10 @@ PropertyEditorPane { height: 150 Text { - text: hasQuick3DImport ? qsTr("No materials yet.\nClick 'Add new material' above to start.") + text: hasQuick3DImport ? qsTr("No materials yet.\nClick '+' above to start.") : qsTr("Add QtQuick3D module using the Components view to enable the Material Editor.") color: StudioTheme.Values.themeTextColor - font.pixelSize: StudioTheme.Values.baseFontSize + font.pixelSize: StudioTheme.Values.mediumFontSize horizontalAlignment: Text.AlignHCenter wrapMode: Text.WordWrap width: root.width