aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPranta Dastider <pranta.dastider@qt.io>2023-09-18 11:21:24 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2023-09-21 09:28:07 +0000
commitae543bd98098f27a95bf172efbf9a1f953e09cbb (patch)
treeadcb75169e6f271618ef37ad6eed9736314a27d8
parent7291df1501397b73a0795647fd1713db27dfb47c (diff)
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> (cherry picked from commit e4c96428c73f7e15b2bae924b2557b48983b9270)
-rw-r--r--share/qtcreator/qmldesigner/connectionseditor/Main.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/qtcreator/qmldesigner/connectionseditor/Main.qml b/share/qtcreator/qmldesigner/connectionseditor/Main.qml
index 80a4d7e4a1..0b3752ac81 100644
--- a/share/qtcreator/qmldesigner/connectionseditor/Main.qml
+++ b/share/qtcreator/qmldesigner/connectionseditor/Main.qml
@@ -57,7 +57,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
@@ -67,7 +67,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
}
@@ -76,7 +76,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
}
@@ -92,7 +92,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()