From e4c96428c73f7e15b2bae924b2557b48983b9270 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Mon, 18 Sep 2023 11:21:24 +0200 Subject: [PATCH] QmlDesigner: Update Tooltips for Connection view titles This patch update tooltip texts for titles directly under the connection view. Fixes: QDS-10626 Change-Id: If0eb948143536702df0219e64db8a7370ba8cb42 Reviewed-by: Thomas Hartmann Reviewed-by: Mats Honkamaa Reviewed-by: Qt CI Patch Build Bot Reviewed-by: --- share/qtcreator/qmldesigner/connectionseditor/Main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/qtcreator/qmldesigner/connectionseditor/Main.qml b/share/qtcreator/qmldesigner/connectionseditor/Main.qml index 6343e546c73..c84f6dcdcbb 100644 --- a/share/qtcreator/qmldesigner/connectionseditor/Main.qml +++ b/share/qtcreator/qmldesigner/connectionseditor/Main.qml @@ -56,7 +56,7 @@ Rectangle { id: connections buttonIcon: StudioTheme.Constants.connections_medium text: qsTr("Connections") - tooltip: qsTr("This is a tooltip.") + tooltip: qsTr("Sets logical connection between the components and the signals.") checked: true autoExclusive: true checkable: true @@ -66,7 +66,7 @@ Rectangle { id: bindings buttonIcon: StudioTheme.Constants.binding_medium text: qsTr("Bindings") - tooltip: qsTr("This is a tooltip.") + tooltip: qsTr("Sets the relation between the properties of two components to bind them together.") autoExclusive: true checkable: true } @@ -75,7 +75,7 @@ Rectangle { id: properties buttonIcon: StudioTheme.Constants.properties_medium text: qsTr("Properties") - tooltip: qsTr("This is a tooltip.") + tooltip: qsTr("Sets an additional property for the component.") autoExclusive: true checkable: true } @@ -91,7 +91,7 @@ Rectangle { id: addButton style: StudioTheme.Values.viewBarButtonStyle buttonIcon: StudioTheme.Constants.add_medium - tooltip: qsTr("Add something.") + tooltip: qsTr("Adds a Connection, Binding, or Custom Property to the components.") onClicked: { if (connections.checked) connectionsListView.addConnection()