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 <thomas.hartmann@qt.io>
Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io>
Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Pranta Dastider
2023-09-18 11:21:24 +02:00
committed by Pranta Ghosh Dastider
parent ff02efe541
commit e4c96428c7

View File

@@ -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()