From 8469da333bd870104ed6d97d461fad34d060c2d0 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Mon, 17 Oct 2016 17:17:37 +0200 Subject: [PATCH] QmlDesigner: Unify tooltip We had slightly different tooltips for the same functionality. I use the tooltip from the navigator. Change-Id: I0afa53d75c01f23ebbfa1311d69e2f5a895c9e34 Reviewed-by: Alessandro Portale Reviewed-by: Leena Miettinen --- .../qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml index 409854f72df..073364685ba 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml @@ -84,7 +84,7 @@ Rectangle { ToolTipArea { anchors.fill: parent onClicked: toogleExportAlias() - tooltip: qsTr("Toggle if selected item is alias exported.") + tooltip: qsTr("Toggles whether this item is exported as an alias property of the root item.") } } }