aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/components/designer/TriangleItemSpecifics.qml
diff options
context:
space:
mode:
authorPranta Dastider <pranta.dastider@qt.io>2023-06-30 16:30:08 +0200
committerPranta Dastider <pranta.dastider@qt.io>2023-07-07 11:35:38 +0200
commit62998be504e483575b8b54586851b26f38773aaa (patch)
treec410eb5c567ff3fae6f8f22d7a26c84671b7373b /src/imports/components/designer/TriangleItemSpecifics.qml
parent830119d8fc87408dbd5ec784bd8c96d290680ae1 (diff)
QmlDesigner: Update Tooltips for Qt Quick Studio Components Propertiesqds-dev-4.3
This patch update tooltip text for Qt Quick Studio Components properties. Fixes: QDS-10149 Change-Id: Ibad77f7c8444bd6917e187e30f592269751fe439 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io>
Diffstat (limited to 'src/imports/components/designer/TriangleItemSpecifics.qml')
-rw-r--r--src/imports/components/designer/TriangleItemSpecifics.qml30
1 files changed, 24 insertions, 6 deletions
diff --git a/src/imports/components/designer/TriangleItemSpecifics.qml b/src/imports/components/designer/TriangleItemSpecifics.qml
index 8a2308e..83c4d91 100644
--- a/src/imports/components/designer/TriangleItemSpecifics.qml
+++ b/src/imports/components/designer/TriangleItemSpecifics.qml
@@ -46,7 +46,10 @@ Column {
caption: qsTr("Triangle Item")
SectionLayout {
- PropertyLabel { text: qsTr("Fill color") }
+ PropertyLabel {
+ text: qsTr("Fill color")
+ tooltip: qsTr("Sets the color to fill the Triangle.")
+ }
ColorEditor {
backendValue: backendValues.fillColor
@@ -54,14 +57,20 @@ Column {
shapeGradients: true
}
- PropertyLabel { text: qsTr("Stroke color") }
+ PropertyLabel {
+ text: qsTr("Stroke color")
+ tooltip: qsTr("Sets the stroke color of the boundary.")
+ }
ColorEditor {
backendValue: backendValues.strokeColor
supportGradient: false
}
- PropertyLabel { text: qsTr("Stroke width") }
+ PropertyLabel {
+ text: qsTr("Stroke width")
+ tooltip: qsTr("Sets the stroke thickness of the boundary.")
+ }
SecondColumnLayout {
SpinBox {
@@ -117,7 +126,10 @@ Column {
caption: qsTr("Radiuses")
SectionLayout {
- PropertyLabel { text: qsTr("Radius") }
+ PropertyLabel {
+ text: qsTr("Radius")
+ tooltip: qsTr("Sets the radius of the corners and the radius for the edges of the intersections in the Triangle.")
+ }
SecondColumnLayout {
SpinBox {
@@ -174,7 +186,10 @@ Column {
anchors.right: parent.right
SectionLayout {
- PropertyLabel { text: qsTr("Vertical") }
+ PropertyLabel {
+ text: qsTr("Vertical")
+ tooltip: qsTr("Sets the top and bottom margins for the Triangle component.")
+ }
SecondColumnLayout {
SpinBox {
@@ -222,7 +237,10 @@ Column {
ExpandingSpacer {}
}
- PropertyLabel { text: qsTr("Horizontal") }
+ PropertyLabel {
+ text: qsTr("Horizontal")
+ tooltip: qsTr("Sets the left and right margins for the Triangle component.")
+ }
SecondColumnLayout {
SpinBox {